Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions data/graphql/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -29885,6 +29885,11 @@ type ProjectV2 implements Closable & Node & Updatable {
orderBy: TeamOrder = {field: NAME, direction: ASC}
): TeamConnection!

"""
Returns true if this project is a template.
"""
template: Boolean!

"""
The project's name.
"""
Expand Down
5 changes: 5 additions & 0 deletions data/graphql/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -29885,6 +29885,11 @@ type ProjectV2 implements Closable & Node & Updatable {
orderBy: TeamOrder = {field: NAME, direction: ASC}
): TeamConnection!

"""
Returns true if this project is a template.
"""
template: Boolean!

"""
The project's name.
"""
Expand Down
13 changes: 13 additions & 0 deletions src/graphql/data/dotcom/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Field <code>template</code> was added to object type 'ProjectV2'</p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2023-03-07"
},
{
"schemaChanges": [
{
Expand Down
8 changes: 8 additions & 0 deletions src/graphql/data/dotcom/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -42054,6 +42054,14 @@
}
]
},
{
"name": "template",
"description": "<p>Returns true if this project is a template.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "title",
"description": "<p>The project's name.</p>",
Expand Down
8 changes: 8 additions & 0 deletions src/graphql/data/ghec/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -42054,6 +42054,14 @@
}
]
},
{
"name": "template",
"description": "<p>Returns true if this project is a template.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "title",
"description": "<p>The project's name.</p>",
Expand Down