Skip to content

Commit 7ce476d

Browse files
authored
adding latest graphql docs (#16003)
1 parent 1c02a6c commit 7ce476d

File tree

3 files changed

+1
-262
lines changed

3 files changed

+1
-262
lines changed

data/graphql/schema.docs.graphql

Lines changed: 0 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -93,31 +93,6 @@ type AcceptTopicSuggestionPayload {
9393
topic: Topic
9494
}
9595

96-
"""
97-
The possible capabilities for action executions setting.
98-
"""
99-
enum ActionExecutionCapabilitySetting {
100-
"""
101-
All action executions are enabled.
102-
"""
103-
ALL_ACTIONS
104-
105-
"""
106-
All action executions are disabled.
107-
"""
108-
DISABLED
109-
110-
"""
111-
Only actions defined within the repo are allowed.
112-
"""
113-
LOCAL_ACTIONS_ONLY
114-
115-
"""
116-
Organization administrators action execution capabilities.
117-
"""
118-
NO_POLICY
119-
}
120-
12196
"""
12297
Represents an object which can take actions on GitHub. Typically a User or Bot.
12398
"""
@@ -8016,36 +7991,6 @@ type EnterpriseOutsideCollaboratorEdge {
80167991
Enterprise information only visible to enterprise owners.
80177992
"""
80187993
type EnterpriseOwnerInfo {
8019-
"""
8020-
A list of enterprise organizations configured with the provided action execution capabilities setting value.
8021-
"""
8022-
actionExecutionCapabilitySettingOrganizations(
8023-
"""
8024-
Returns the elements in the list that come after the specified cursor.
8025-
"""
8026-
after: String
8027-
8028-
"""
8029-
Returns the elements in the list that come before the specified cursor.
8030-
"""
8031-
before: String
8032-
8033-
"""
8034-
Returns the first _n_ elements from the list.
8035-
"""
8036-
first: Int
8037-
8038-
"""
8039-
Returns the last _n_ elements from the list.
8040-
"""
8041-
last: Int
8042-
8043-
"""
8044-
Ordering options for organizations with this setting.
8045-
"""
8046-
orderBy: OrganizationOrder = {field: LOGIN, direction: ASC}
8047-
): OrganizationConnection!
8048-
80497994
"""
80507995
A list of all of the administrators for this enterprise.
80517996
"""
@@ -15219,11 +15164,6 @@ type Mutation {
1521915164
"""
1522015165
updateCheckSuitePreferences(input: UpdateCheckSuitePreferencesInput!): UpdateCheckSuitePreferencesPayload
1522115166

15222-
"""
15223-
Sets the action execution capability setting for an enterprise.
15224-
"""
15225-
updateEnterpriseActionExecutionCapabilitySetting(input: UpdateEnterpriseActionExecutionCapabilitySettingInput!): UpdateEnterpriseActionExecutionCapabilitySettingPayload
15226-
1522715167
"""
1522815168
Updates the role of an enterprise administrator.
1522915169
"""
@@ -36067,46 +36007,6 @@ type UpdateCheckSuitePreferencesPayload {
3606736007
repository: Repository
3606836008
}
3606936009

36070-
"""
36071-
Autogenerated input type of UpdateEnterpriseActionExecutionCapabilitySetting
36072-
"""
36073-
input UpdateEnterpriseActionExecutionCapabilitySettingInput {
36074-
"""
36075-
The value for the action execution capability setting on the enterprise.
36076-
"""
36077-
capability: ActionExecutionCapabilitySetting!
36078-
36079-
"""
36080-
A unique identifier for the client performing the mutation.
36081-
"""
36082-
clientMutationId: String
36083-
36084-
"""
36085-
The ID of the enterprise on which to set the members can create repositories setting.
36086-
"""
36087-
enterpriseId: ID! @possibleTypes(concreteTypes: ["Enterprise"])
36088-
}
36089-
36090-
"""
36091-
Autogenerated return type of UpdateEnterpriseActionExecutionCapabilitySetting
36092-
"""
36093-
type UpdateEnterpriseActionExecutionCapabilitySettingPayload {
36094-
"""
36095-
A unique identifier for the client performing the mutation.
36096-
"""
36097-
clientMutationId: String
36098-
36099-
"""
36100-
The enterprise with the updated action execution capability setting.
36101-
"""
36102-
enterprise: Enterprise
36103-
36104-
"""
36105-
A message confirming the result of updating the action execution capability setting.
36106-
"""
36107-
message: String
36108-
}
36109-
3611036010
"""
3611136011
Autogenerated input type of UpdateEnterpriseAdministratorRole
3611236012
"""

lib/graphql/static/prerendered-objects.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/graphql/static/schema-dotcom.json

Lines changed: 0 additions & 161 deletions
Original file line numberDiff line numberDiff line change
@@ -4342,48 +4342,6 @@
43424342
}
43434343
]
43444344
},
4345-
{
4346-
"name": "updateEnterpriseActionExecutionCapabilitySetting",
4347-
"kind": "mutations",
4348-
"id": "updateenterpriseactionexecutioncapabilitysetting",
4349-
"href": "/graphql/reference/mutations#updateenterpriseactionexecutioncapabilitysetting",
4350-
"description": "<p>Sets the action execution capability setting for an enterprise.</p>",
4351-
"inputFields": [
4352-
{
4353-
"name": "input",
4354-
"type": "UpdateEnterpriseActionExecutionCapabilitySettingInput!",
4355-
"id": "updateenterpriseactionexecutioncapabilitysettinginput",
4356-
"kind": "input-objects",
4357-
"href": "/graphql/reference/input-objects#updateenterpriseactionexecutioncapabilitysettinginput"
4358-
}
4359-
],
4360-
"returnFields": [
4361-
{
4362-
"name": "clientMutationId",
4363-
"type": "String",
4364-
"id": "string",
4365-
"kind": "scalars",
4366-
"href": "/graphql/reference/scalars#string",
4367-
"description": "<p>A unique identifier for the client performing the mutation.</p>"
4368-
},
4369-
{
4370-
"name": "enterprise",
4371-
"type": "Enterprise",
4372-
"id": "enterprise",
4373-
"kind": "objects",
4374-
"href": "/graphql/reference/objects#enterprise",
4375-
"description": "<p>The enterprise with the updated action execution capability setting.</p>"
4376-
},
4377-
{
4378-
"name": "message",
4379-
"type": "String",
4380-
"id": "string",
4381-
"kind": "scalars",
4382-
"href": "/graphql/reference/scalars#string",
4383-
"description": "<p>A message confirming the result of updating the action execution capability setting.</p>"
4384-
}
4385-
]
4386-
},
43874345
{
43884346
"name": "updateEnterpriseAdministratorRole",
43894347
"kind": "mutations",
@@ -13992,66 +13950,6 @@
1399213950
"href": "/graphql/reference/objects#enterpriseownerinfo",
1399313951
"description": "<p>Enterprise information only visible to enterprise owners.</p>",
1399413952
"fields": [
13995-
{
13996-
"name": "actionExecutionCapabilitySettingOrganizations",
13997-
"description": "<p>A list of enterprise organizations configured with the provided action execution capabilities setting value.</p>",
13998-
"type": "OrganizationConnection!",
13999-
"id": "organizationconnection",
14000-
"kind": "objects",
14001-
"href": "/graphql/reference/objects#organizationconnection",
14002-
"arguments": [
14003-
{
14004-
"name": "after",
14005-
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
14006-
"type": {
14007-
"name": "String",
14008-
"id": "string",
14009-
"kind": "scalars",
14010-
"href": "/graphql/reference/scalars#string"
14011-
}
14012-
},
14013-
{
14014-
"name": "before",
14015-
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
14016-
"type": {
14017-
"name": "String",
14018-
"id": "string",
14019-
"kind": "scalars",
14020-
"href": "/graphql/reference/scalars#string"
14021-
}
14022-
},
14023-
{
14024-
"name": "first",
14025-
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
14026-
"type": {
14027-
"name": "Int",
14028-
"id": "int",
14029-
"kind": "scalars",
14030-
"href": "/graphql/reference/scalars#int"
14031-
}
14032-
},
14033-
{
14034-
"name": "last",
14035-
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
14036-
"type": {
14037-
"name": "Int",
14038-
"id": "int",
14039-
"kind": "scalars",
14040-
"href": "/graphql/reference/scalars#int"
14041-
}
14042-
},
14043-
{
14044-
"name": "orderBy",
14045-
"description": "<p>Ordering options for organizations with this setting.</p>",
14046-
"type": {
14047-
"name": "OrganizationOrder",
14048-
"id": "organizationorder",
14049-
"kind": "input-objects",
14050-
"href": "/graphql/reference/input-objects#organizationorder"
14051-
}
14052-
}
14053-
]
14054-
},
1405513953
{
1405613954
"name": "admins",
1405713955
"description": "<p>A list of all of the administrators for this enterprise.</p>",
@@ -56813,31 +56711,6 @@
5681356711
}
5681456712
],
5681556713
"enums": [
56816-
{
56817-
"name": "ActionExecutionCapabilitySetting",
56818-
"kind": "enums",
56819-
"id": "actionexecutioncapabilitysetting",
56820-
"href": "/graphql/reference/enums#actionexecutioncapabilitysetting",
56821-
"description": "<p>The possible capabilities for action executions setting.</p>",
56822-
"values": [
56823-
{
56824-
"name": "ALL_ACTIONS",
56825-
"description": "<p>All action executions are enabled.</p>"
56826-
},
56827-
{
56828-
"name": "DISABLED",
56829-
"description": "<p>All action executions are disabled.</p>"
56830-
},
56831-
{
56832-
"name": "LOCAL_ACTIONS_ONLY",
56833-
"description": "<p>Only actions defined within the repo are allowed.</p>"
56834-
},
56835-
{
56836-
"name": "NO_POLICY",
56837-
"description": "<p>Organization administrators action execution capabilities.</p>"
56838-
}
56839-
]
56840-
},
5684156714
{
5684256715
"name": "AuditLogOrderField",
5684356716
"kind": "enums",
@@ -67358,40 +67231,6 @@
6735867231
}
6735967232
]
6736067233
},
67361-
{
67362-
"name": "UpdateEnterpriseActionExecutionCapabilitySettingInput",
67363-
"kind": "inputObjects",
67364-
"id": "updateenterpriseactionexecutioncapabilitysettinginput",
67365-
"href": "/graphql/reference/input-objects#updateenterpriseactionexecutioncapabilitysettinginput",
67366-
"description": "<p>Autogenerated input type of UpdateEnterpriseActionExecutionCapabilitySetting.</p>",
67367-
"inputFields": [
67368-
{
67369-
"name": "capability",
67370-
"description": "<p>The value for the action execution capability setting on the enterprise.</p>",
67371-
"type": "ActionExecutionCapabilitySetting!",
67372-
"id": "actionexecutioncapabilitysetting",
67373-
"kind": "enums",
67374-
"href": "/graphql/reference/enums#actionexecutioncapabilitysetting"
67375-
},
67376-
{
67377-
"name": "clientMutationId",
67378-
"description": "<p>A unique identifier for the client performing the mutation.</p>",
67379-
"type": "String",
67380-
"id": "string",
67381-
"kind": "scalars",
67382-
"href": "/graphql/reference/scalars#string"
67383-
},
67384-
{
67385-
"name": "enterpriseId",
67386-
"description": "<p>The ID of the enterprise on which to set the members can create repositories setting.</p>",
67387-
"type": "ID!",
67388-
"id": "id",
67389-
"kind": "scalars",
67390-
"href": "/graphql/reference/scalars#id",
67391-
"isDeprecated": false
67392-
}
67393-
]
67394-
},
6739567234
{
6739667235
"name": "UpdateEnterpriseAdministratorRoleInput",
6739767236
"kind": "inputObjects",

0 commit comments

Comments
 (0)