Skip to content
Merged
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
40 changes: 40 additions & 0 deletions schema/github/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -20992,6 +20992,11 @@ interface IssueFieldCommon {
"""
description: String

"""
Identifies the primary key from the database as a BigInt.
"""
fullDatabaseId: BigInt

"""
The issue field's name.
"""
Expand Down Expand Up @@ -21087,6 +21092,11 @@ type IssueFieldDate implements IssueFieldCommon & Node {
"""
description: String

"""
Identifies the primary key from the database as a BigInt.
"""
fullDatabaseId: BigInt

"""
The Node ID of the IssueFieldDate object
"""
Expand Down Expand Up @@ -21142,6 +21152,11 @@ type IssueFieldNumber implements IssueFieldCommon & Node {
"""
description: String

"""
Identifies the primary key from the database as a BigInt.
"""
fullDatabaseId: BigInt

"""
The Node ID of the IssueFieldNumber object
"""
Expand Down Expand Up @@ -21252,6 +21267,11 @@ type IssueFieldSingleSelect implements IssueFieldCommon & Node {
"""
description: String

"""
Identifies the primary key from the database as a BigInt.
"""
fullDatabaseId: BigInt

"""
The Node ID of the IssueFieldSingleSelect object
"""
Expand Down Expand Up @@ -21282,11 +21302,21 @@ type IssueFieldSingleSelectOption implements Node {
"""
color: IssueFieldSingleSelectOptionColor!

"""
Identifies the primary key from the database.
"""
databaseId: Int

"""
The option's plain-text description.
"""
description: String

"""
Identifies the primary key from the database as a BigInt.
"""
fullDatabaseId: BigInt

"""
The Node ID of the IssueFieldSingleSelectOption object
"""
Expand Down Expand Up @@ -21432,6 +21462,11 @@ type IssueFieldText implements IssueFieldCommon & Node {
"""
description: String

"""
Identifies the primary key from the database as a BigInt.
"""
fullDatabaseId: BigInt

"""
The Node ID of the IssueFieldText object
"""
Expand Down Expand Up @@ -48450,6 +48485,11 @@ enum ReportedContentClassifiers {
"""
DUPLICATE

"""
A low quality piece of content
"""
LOW_QUALITY

"""
An irrelevant piece of content
"""
Expand Down