Skip to content

Commit eee6db8

Browse files
authored
Merge pull request #24337 from github/repo-sync
repo sync
2 parents 9e45db0 + 74ade64 commit eee6db8

File tree

5 files changed

+39
-0
lines changed

5 files changed

+39
-0
lines changed

data/graphql/ghec/schema.docs.graphql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29885,6 +29885,11 @@ type ProjectV2 implements Closable & Node & Updatable {
2988529885
orderBy: TeamOrder = {field: NAME, direction: ASC}
2988629886
): TeamConnection!
2988729887

29888+
"""
29889+
Returns true if this project is a template.
29890+
"""
29891+
template: Boolean!
29892+
2988829893
"""
2988929894
The project's name.
2989029895
"""

data/graphql/schema.docs.graphql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29885,6 +29885,11 @@ type ProjectV2 implements Closable & Node & Updatable {
2988529885
orderBy: TeamOrder = {field: NAME, direction: ASC}
2988629886
): TeamConnection!
2988729887

29888+
"""
29889+
Returns true if this project is a template.
29890+
"""
29891+
template: Boolean!
29892+
2988829893
"""
2988929894
The project's name.
2989029895
"""

src/graphql/data/dotcom/changelog.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Field <code>template</code> was added to object type 'ProjectV2'</p>"
8+
]
9+
}
10+
],
11+
"previewChanges": [],
12+
"upcomingChanges": [],
13+
"date": "2023-03-07"
14+
},
215
{
316
"schemaChanges": [
417
{

src/graphql/data/dotcom/schema.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42054,6 +42054,14 @@
4205442054
}
4205542055
]
4205642056
},
42057+
{
42058+
"name": "template",
42059+
"description": "<p>Returns true if this project is a template.</p>",
42060+
"type": "Boolean!",
42061+
"id": "boolean",
42062+
"kind": "scalars",
42063+
"href": "/graphql/reference/scalars#boolean"
42064+
},
4205742065
{
4205842066
"name": "title",
4205942067
"description": "<p>The project's name.</p>",

src/graphql/data/ghec/schema.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42054,6 +42054,14 @@
4205442054
}
4205542055
]
4205642056
},
42057+
{
42058+
"name": "template",
42059+
"description": "<p>Returns true if this project is a template.</p>",
42060+
"type": "Boolean!",
42061+
"id": "boolean",
42062+
"kind": "scalars",
42063+
"href": "/graphql/reference/scalars#boolean"
42064+
},
4205742065
{
4205842066
"name": "title",
4205942067
"description": "<p>The project's name.</p>",

0 commit comments

Comments
 (0)