1
0
mirror of synced 2026-01-08 12:01:53 -05:00

Merge pull request #29758 from github/graphql-schema-update

GraphQL schema update
This commit is contained in:
docubot
2022-08-09 14:15:42 -04:00
committed by GitHub
2 changed files with 14 additions and 0 deletions

View File

@@ -32385,6 +32385,12 @@ enum ReportedContentClassifiers {
A repository contains the content for a project.
"""
type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo & Starrable & Subscribable & UniformResourceLocatable {
"""
Whether or not a pull request head branch that is behind its base branch can
always be updated even if it is not required to be up to date before merging.
"""
allowUpdateBranch: Boolean!
"""
A list of users that can be assigned to issues in this repository.
"""

View File

@@ -45523,6 +45523,14 @@
}
],
"fields": [
{
"name": "allowUpdateBranch",
"description": "<p>Whether or not a pull request head branch that is behind its base branch can\nalways be updated even if it is not required to be up to date before merging.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "assignableUsers",
"description": "<p>A list of users that can be assigned to issues in this repository.</p>",