Skip to content

Commit 648325a

Browse files
authored
Merge pull request github#28300 from github/graphql-schema-update
GraphQL schema update
2 parents b3b86c2 + 1cf7b6d commit 648325a

File tree

8 files changed

+86
-15
lines changed

8 files changed

+86
-15
lines changed

data/graphql/ghae/schema.docs-ghae.graphql

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11750,12 +11750,12 @@ The possible roles for enterprise membership.
1175011750
"""
1175111751
enum EnterpriseUserAccountMembershipRole {
1175211752
"""
11753-
The user is a member of the enterprise membership.
11753+
The user is a member of an organization in the enterprise.
1175411754
"""
1175511755
MEMBER
1175611756

1175711757
"""
11758-
The user is an owner of the enterprise membership.
11758+
The user is an owner of an organization in the enterprise.
1175911759
"""
1176011760
OWNER
1176111761
}
@@ -32816,6 +32816,11 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
3281632816
"""
3281732817
squashMergeAllowed: Boolean!
3281832818

32819+
"""
32820+
Whether a squash merge commit can use the pull request title as default.
32821+
"""
32822+
squashPrTitleUsedAsDefault: Boolean!
32823+
3281932824
"""
3282032825
The SSH URL to clone this repository
3282132826
"""

data/graphql/ghec/schema.docs.graphql

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8174,6 +8174,11 @@ enum DependencyGraphEcosystem {
81748174
Ruby gems hosted at RubyGems.org
81758175
"""
81768176
RUBYGEMS
8177+
8178+
"""
8179+
Rust crates
8180+
"""
8181+
RUST
81778182
}
81788183

81798184
"""
@@ -12813,12 +12818,12 @@ The possible roles for enterprise membership.
1281312818
"""
1281412819
enum EnterpriseUserAccountMembershipRole {
1281512820
"""
12816-
The user is a member of the enterprise membership.
12821+
The user is a member of an organization in the enterprise.
1281712822
"""
1281812823
MEMBER
1281912824

1282012825
"""
12821-
The user is an owner of the enterprise membership.
12826+
The user is an owner of an organization in the enterprise.
1282212827
"""
1282312828
OWNER
1282412829
}
@@ -37285,6 +37290,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
3728537290
"""
3728637291
squashMergeAllowed: Boolean!
3728737292

37293+
"""
37294+
Whether a squash merge commit can use the pull request title as default.
37295+
"""
37296+
squashPrTitleUsedAsDefault: Boolean!
37297+
3728837298
"""
3728937299
The SSH URL to clone this repository
3729037300
"""

data/graphql/schema.docs.graphql

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8174,6 +8174,11 @@ enum DependencyGraphEcosystem {
81748174
Ruby gems hosted at RubyGems.org
81758175
"""
81768176
RUBYGEMS
8177+
8178+
"""
8179+
Rust crates
8180+
"""
8181+
RUST
81778182
}
81788183

81798184
"""
@@ -12813,12 +12818,12 @@ The possible roles for enterprise membership.
1281312818
"""
1281412819
enum EnterpriseUserAccountMembershipRole {
1281512820
"""
12816-
The user is a member of the enterprise membership.
12821+
The user is a member of an organization in the enterprise.
1281712822
"""
1281812823
MEMBER
1281912824

1282012825
"""
12821-
The user is an owner of the enterprise membership.
12826+
The user is an owner of an organization in the enterprise.
1282212827
"""
1282312828
OWNER
1282412829
}
@@ -37285,6 +37290,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
3728537290
"""
3728637291
squashMergeAllowed: Boolean!
3728737292

37293+
"""
37294+
Whether a squash merge commit can use the pull request title as default.
37295+
"""
37296+
squashPrTitleUsedAsDefault: Boolean!
37297+
3728837298
"""
3728937299
The SSH URL to clone this repository
3729037300
"""

lib/graphql/static/changelog.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"Enum value `RUST` was added to enum `DependencyGraphEcosystem`",
8+
"Field `squashPrTitleUsedAsDefault` was added to object type `Repository`"
9+
]
10+
}
11+
],
12+
"previewChanges": [],
13+
"upcomingChanges": [],
14+
"date": "2022-06-10"
15+
},
216
{
317
"schemaChanges": [
418
{

lib/graphql/static/prerendered-objects.json

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

lib/graphql/static/schema-dotcom.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52967,6 +52967,14 @@
5296752967
"kind": "scalars",
5296852968
"href": "/graphql/reference/scalars#boolean"
5296952969
},
52970+
{
52971+
"name": "squashPrTitleUsedAsDefault",
52972+
"description": "<p>Whether a squash merge commit can use the pull request title as default.</p>",
52973+
"type": "Boolean!",
52974+
"id": "boolean",
52975+
"kind": "scalars",
52976+
"href": "/graphql/reference/scalars#boolean"
52977+
},
5297052978
{
5297152979
"name": "sshUrl",
5297252980
"description": "<p>The SSH URL to clone this repository.</p>",
@@ -69165,6 +69173,10 @@
6916569173
{
6916669174
"name": "RUBYGEMS",
6916769175
"description": "<p>Ruby gems hosted at RubyGems.org.</p>"
69176+
},
69177+
{
69178+
"name": "RUST",
69179+
"description": "<p>Rust crates.</p>"
6916869180
}
6916969181
]
6917069182
},
@@ -69622,11 +69634,11 @@
6962269634
"values": [
6962369635
{
6962469636
"name": "MEMBER",
69625-
"description": "<p>The user is a member of the enterprise membership.</p>"
69637+
"description": "<p>The user is a member of an organization in the enterprise.</p>"
6962669638
},
6962769639
{
6962869640
"name": "OWNER",
69629-
"description": "<p>The user is an owner of the enterprise membership.</p>"
69641+
"description": "<p>The user is an owner of an organization in the enterprise.</p>"
6963069642
}
6963169643
]
6963269644
},

lib/graphql/static/schema-ghae.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46712,6 +46712,14 @@
4671246712
"kind": "scalars",
4671346713
"href": "/graphql/reference/scalars#boolean"
4671446714
},
46715+
{
46716+
"name": "squashPrTitleUsedAsDefault",
46717+
"description": "<p>Whether a squash merge commit can use the pull request title as default.</p>",
46718+
"type": "Boolean!",
46719+
"id": "boolean",
46720+
"kind": "scalars",
46721+
"href": "/graphql/reference/scalars#boolean"
46722+
},
4671546723
{
4671646724
"name": "sshUrl",
4671746725
"description": "<p>The SSH URL to clone this repository.</p>",
@@ -60566,11 +60574,11 @@
6056660574
"values": [
6056760575
{
6056860576
"name": "MEMBER",
60569-
"description": "<p>The user is a member of the enterprise membership.</p>"
60577+
"description": "<p>The user is a member of an organization in the enterprise.</p>"
6057060578
},
6057160579
{
6057260580
"name": "OWNER",
60573-
"description": "<p>The user is an owner of the enterprise membership.</p>"
60581+
"description": "<p>The user is an owner of an organization in the enterprise.</p>"
6057460582
}
6057560583
]
6057660584
},

lib/graphql/static/schema-ghec.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52967,6 +52967,14 @@
5296752967
"kind": "scalars",
5296852968
"href": "/graphql/reference/scalars#boolean"
5296952969
},
52970+
{
52971+
"name": "squashPrTitleUsedAsDefault",
52972+
"description": "<p>Whether a squash merge commit can use the pull request title as default.</p>",
52973+
"type": "Boolean!",
52974+
"id": "boolean",
52975+
"kind": "scalars",
52976+
"href": "/graphql/reference/scalars#boolean"
52977+
},
5297052978
{
5297152979
"name": "sshUrl",
5297252980
"description": "<p>The SSH URL to clone this repository.</p>",
@@ -69165,6 +69173,10 @@
6916569173
{
6916669174
"name": "RUBYGEMS",
6916769175
"description": "<p>Ruby gems hosted at RubyGems.org.</p>"
69176+
},
69177+
{
69178+
"name": "RUST",
69179+
"description": "<p>Rust crates.</p>"
6916869180
}
6916969181
]
6917069182
},
@@ -69622,11 +69634,11 @@
6962269634
"values": [
6962369635
{
6962469636
"name": "MEMBER",
69625-
"description": "<p>The user is a member of the enterprise membership.</p>"
69637+
"description": "<p>The user is a member of an organization in the enterprise.</p>"
6962669638
},
6962769639
{
6962869640
"name": "OWNER",
69629-
"description": "<p>The user is an owner of the enterprise membership.</p>"
69641+
"description": "<p>The user is an owner of an organization in the enterprise.</p>"
6963069642
}
6963169643
]
6963269644
},

0 commit comments

Comments
 (0)