Objects in GraphQL represent the resources you can access. An object can contain a list of fields, which are specifically typed.
For example, the Repository
object has a field called name
, which is a String
.
For more information, see Introduction to GraphQL.
ActorConnectionThe connection type for Actor.
Fields forActorConnection
Name Description
edges
([ActorEdge]
)
A list of edges.
nodes
([Actor]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
ActorEdgeAn edge in a connection.
Fields forActorEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Actor
)
The item at the end of the edge.
ActorLocationLocation information for an actor.
Fields forActorLocation
Name Description
city
(String
)
City.
country
(String
)
Country name.
countryCode
(String
)
Country code.
region
(String
)
Region name.
regionCode
(String
)
Region or state code.
AddedToMergeQueueEventRepresents anadded_to_merge_queue
event on a given pull request.
AddedToMergeQueueEvent
Implements
Fields for AddedToMergeQueueEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
enqueuer
(User
)
The user who added this Pull Request to the merge queue.
id
(ID!
)
The Node ID of the AddedToMergeQueueEvent object.
mergeQueue
(MergeQueue
)
The merge queue where this pull request was added to.
pullRequest
(PullRequest
)
PullRequest referenced by event.
AddedToProjectEventRepresents aadded_to_project
event on a given issue or pull request.
AddedToProjectEvent
Implements
Fields for AddedToProjectEvent
An announcement banner for an enterprise or organization.
Fields forAnnouncementBanner
Name Description
createdAt
(DateTime!
)
The date the announcement was created.
expiresAt
(DateTime
)
The expiration date of the announcement, if any.
isUserDismissible
(Boolean!
)
Whether the announcement can be dismissed by the user.
message
(String
)
The text of the announcement.
AppA GitHub App.
App
Implements
Fields for App
Name Description
clientId
(String
)
The client ID of the app.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
description
(String
)
The description of the app.
id
(ID!
)
The Node ID of the App object.
ipAllowListEntries
(IpAllowListEntryConnection!
)
The IP addresses of the app.
Arguments for ipAllowListEntries
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IpAllowListEntryOrder
)
Ordering options for IP allow list entries returned.
logoBackgroundColor
(String!
)
The hex color code, without the leading '#', for the logo background.
logoUrl
(URI!
)
A URL pointing to the app's logo.
Arguments for logoUrl
size
(Int
)
The size of the resulting image.
name
(String!
)
The name of the app.
slug
(String!
)
A slug based on the name of the app for use in URLs.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The URL to the app's homepage.
AssignedEventRepresents anassigned
event on any assignable object.
AssignedEvent
Implements
Fields for AssignedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
assignable
(Assignable!
)
Identifies the assignable associated with the event.
assignee
(Assignee
)
Identifies the user or mannequin that was assigned.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the AssignedEvent object.
user
(User
)
Identifies the user who was assigned.
Warning
user
is deprecated.
Assignees can now be mannequins. Use the assignee
field instead. Removal on 2020-01-01 UTC.
The connection type for Assignee.
Fields forAssigneeConnection
Name Description
edges
([AssigneeEdge]
)
A list of edges.
nodes
([Assignee]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
AssigneeEdgeAn edge in a connection.
Fields forAssigneeEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Assignee
)
The item at the end of the edge.
AutoMergeDisabledEventRepresents aauto_merge_disabled
event on a given pull request.
AutoMergeDisabledEvent
Implements
Fields for AutoMergeDisabledEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
disabler
(User
)
The user who disabled auto-merge for this Pull Request.
id
(ID!
)
The Node ID of the AutoMergeDisabledEvent object.
pullRequest
(PullRequest
)
PullRequest referenced by event.
reason
(String
)
The reason auto-merge was disabled.
reasonCode
(String
)
The reason_code relating to why auto-merge was disabled.
AutoMergeEnabledEventRepresents aauto_merge_enabled
event on a given pull request.
AutoMergeEnabledEvent
Implements
Fields for AutoMergeEnabledEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
enabler
(User
)
The user who enabled auto-merge for this Pull Request.
id
(ID!
)
The Node ID of the AutoMergeEnabledEvent object.
pullRequest
(PullRequest
)
PullRequest referenced by event.
AutoMergeRequestRepresents an auto-merge request for a pull request.
Fields forAutoMergeRequest
Name Description
authorEmail
(String
)
The email address of the author of this auto-merge request.
commitBody
(String
)
The commit message of the auto-merge request. If a merge queue is required by the base branch, this value will be set by the merge queue when merging.
commitHeadline
(String
)
The commit title of the auto-merge request. If a merge queue is required by the base branch, this value will be set by the merge queue when merging.
enabledAt
(DateTime
)
When was this auto-merge request was enabled.
enabledBy
(Actor
)
The actor who created the auto-merge request.
mergeMethod
(PullRequestMergeMethod!
)
The merge method of the auto-merge request. If a merge queue is required by the base branch, this value will be set by the merge queue when merging.
pullRequest
(PullRequest!
)
The pull request that this auto-merge request is set against.
AutoRebaseEnabledEventRepresents aauto_rebase_enabled
event on a given pull request.
AutoRebaseEnabledEvent
Implements
Fields for AutoRebaseEnabledEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
enabler
(User
)
The user who enabled auto-merge (rebase) for this Pull Request.
id
(ID!
)
The Node ID of the AutoRebaseEnabledEvent object.
pullRequest
(PullRequest
)
PullRequest referenced by event.
AutoSquashEnabledEventRepresents aauto_squash_enabled
event on a given pull request.
AutoSquashEnabledEvent
Implements
Fields for AutoSquashEnabledEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
enabler
(User
)
The user who enabled auto-merge (squash) for this Pull Request.
id
(ID!
)
The Node ID of the AutoSquashEnabledEvent object.
pullRequest
(PullRequest
)
PullRequest referenced by event.
AutomaticBaseChangeFailedEventRepresents aautomatic_base_change_failed
event on a given pull request.
AutomaticBaseChangeFailedEvent
Implements
Fields for AutomaticBaseChangeFailedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the AutomaticBaseChangeFailedEvent object.
newBase
(String!
)
The new base for this PR.
oldBase
(String!
)
The old base for this PR.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
AutomaticBaseChangeSucceededEventRepresents aautomatic_base_change_succeeded
event on a given pull request.
AutomaticBaseChangeSucceededEvent
Implements
Fields for AutomaticBaseChangeSucceededEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the AutomaticBaseChangeSucceededEvent object.
newBase
(String!
)
The new base for this PR.
oldBase
(String!
)
The old base for this PR.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
BaseRefChangedEventRepresents abase_ref_changed
event on a given issue or pull request.
BaseRefChangedEvent
Implements
Fields for BaseRefChangedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
currentRefName
(String!
)
Identifies the name of the base ref for the pull request after it was changed.
databaseId
(Int
)
Identifies the primary key from the database.
id
(ID!
)
The Node ID of the BaseRefChangedEvent object.
previousRefName
(String!
)
Identifies the name of the base ref for the pull request before it was changed.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
BaseRefDeletedEventRepresents abase_ref_deleted
event on a given pull request.
BaseRefDeletedEvent
Implements
Fields for BaseRefDeletedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
baseRefName
(String
)
Identifies the name of the Ref associated with the base_ref_deleted
event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the BaseRefDeletedEvent object.
pullRequest
(PullRequest
)
PullRequest referenced by event.
BaseRefForcePushedEventRepresents abase_ref_force_pushed
event on a given pull request.
BaseRefForcePushedEvent
Implements
Fields for BaseRefForcePushedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
afterCommit
(Commit
)
Identifies the after commit SHA for thebase_ref_force_pushed
event.
beforeCommit
(Commit
)
Identifies the before commit SHA for thebase_ref_force_pushed
event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the BaseRefForcePushedEvent object.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
ref
(Ref
)
Identifies the fully qualified ref name for thebase_ref_force_pushed
event.
Represents a Git blame.
Fields forBlame
Name Description
ranges
([BlameRange!]!
)
The list of ranges from a Git blame.
BlameRangeRepresents a range of information from a Git blame.
Fields forBlameRange
Name Description
age
(Int!
)
Identifies the recency of the change, from 1 (new) to 10 (old). This is calculated as a 2-quantile and determines the length of distance between the median age of all the changes in the file and the recency of the current range's change.
commit
(Commit!
)
Identifies the line author.
endingLine
(Int!
)
The ending line for the range.
startingLine
(Int!
)
The starting line for the range.
BlobRepresents a Git blob.
Blob
Implements
Fields for Blob
Name Description
abbreviatedOid
(String!
)
An abbreviated version of the Git object ID.
byteSize
(Int!
)
Byte size of Blob object.
commitResourcePath
(URI!
)
The HTTP path for this Git object.
commitUrl
(URI!
)
The HTTP URL for this Git object.
id
(ID!
)
The Node ID of the Blob object.
isBinary
(Boolean
)
Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.
isTruncated
(Boolean!
)
Indicates whether the contents is truncated.
oid
(GitObjectID!
)
The Git object ID.
repository
(Repository!
)
The Repository the Git object belongs to.
text
(String
)
UTF8 text data or null if the Blob is binary.
BotA special type of user which takes actions on behalf of GitHub Apps.
Bot
Implements
Fields for Bot
Name Description
avatarUrl
(URI!
)
A URL pointing to the GitHub App's public avatar.
Arguments for avatarUrl
size
(Int
)
The size of the resulting square image.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
id
(ID!
)
The Node ID of the Bot object.
login
(String!
)
The username of the actor.
resourcePath
(URI!
)
The HTTP path for this bot.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this bot.
BranchNamePatternParametersParameters to be used for the branch_name_pattern rule.
Fields forBranchNamePatternParameters
Name Description
name
(String
)
How this rule will appear to users.
negate
(Boolean!
)
If true, the rule will fail if the pattern matches.
operator
(String!
)
The operator to use for matching.
pattern
(String!
)
The pattern to match with.
BranchProtectionRuleA branch protection rule.
BranchProtectionRule
Implements
Fields for BranchProtectionRule
Name Description
allowsDeletions
(Boolean!
)
Can this branch be deleted.
allowsForcePushes
(Boolean!
)
Are force pushes allowed on this branch.
blocksCreations
(Boolean!
)
Is branch creation a protected operation.
branchProtectionRuleConflicts
(BranchProtectionRuleConflictConnection!
)
A list of conflicts matching branches protection rule and other branch protection rules.
Arguments for branchProtectionRuleConflicts
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
bypassForcePushAllowances
(BypassForcePushAllowanceConnection!
)
A list of actors able to force push for this branch protection rule.
Arguments for bypassForcePushAllowances
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
bypassPullRequestAllowances
(BypassPullRequestAllowanceConnection!
)
A list of actors able to bypass PRs for this branch protection rule.
Arguments for bypassPullRequestAllowances
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
creator
(Actor
)
The actor who created this branch protection rule.
databaseId
(Int
)
Identifies the primary key from the database.
dismissesStaleReviews
(Boolean!
)
Will new commits pushed to matching branches dismiss pull request review approvals.
id
(ID!
)
The Node ID of the BranchProtectionRule object.
isAdminEnforced
(Boolean!
)
Can admins override branch protection.
lockAllowsFetchAndMerge
(Boolean!
)
Whether users can pull changes from upstream when the branch is locked. Set to true
to allow fork syncing. Set to false
to prevent fork syncing.
lockBranch
(Boolean!
)
Whether to set the branch as read-only. If this is true, users will not be able to push to the branch.
matchingRefs
(RefConnection!
)
Repository refs that are protected by this rule.
Arguments for matchingRefs
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
query
(String
)
Filters refs with query on name.
pattern
(String!
)
Identifies the protection rule pattern.
pushAllowances
(PushAllowanceConnection!
)
A list push allowances for this branch protection rule.
Arguments for pushAllowances
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
repository
(Repository
)
The repository associated with this branch protection rule.
requireLastPushApproval
(Boolean!
)
Whether the most recent push must be approved by someone other than the person who pushed it.
requiredApprovingReviewCount
(Int
)
Number of approving reviews required to update matching branches.
requiredDeploymentEnvironments
([String]
)
List of required deployment environments that must be deployed successfully to update matching branches.
requiredStatusCheckContexts
([String]
)
List of required status check contexts that must pass for commits to be accepted to matching branches.
requiredStatusChecks
([RequiredStatusCheckDescription!]
)
List of required status checks that must pass for commits to be accepted to matching branches.
requiresApprovingReviews
(Boolean!
)
Are approving reviews required to update matching branches.
requiresCodeOwnerReviews
(Boolean!
)
Are reviews from code owners required to update matching branches.
requiresCommitSignatures
(Boolean!
)
Are commits required to be signed.
requiresConversationResolution
(Boolean!
)
Are conversations required to be resolved before merging.
requiresDeployments
(Boolean!
)
Does this branch require deployment to specific environments before merging.
requiresLinearHistory
(Boolean!
)
Are merge commits prohibited from being pushed to this branch.
requiresStatusChecks
(Boolean!
)
Are status checks required to update matching branches.
requiresStrictStatusChecks
(Boolean!
)
Are branches required to be up to date before merging.
restrictsPushes
(Boolean!
)
Is pushing to matching branches restricted.
restrictsReviewDismissals
(Boolean!
)
Is dismissal of pull request reviews restricted.
reviewDismissalAllowances
(ReviewDismissalAllowanceConnection!
)
A list review dismissal allowances for this branch protection rule.
Arguments for reviewDismissalAllowances
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
A conflict between two branch protection rules.
Fields forBranchProtectionRuleConflict
Name Description
branchProtectionRule
(BranchProtectionRule
)
Identifies the branch protection rule.
conflictingBranchProtectionRule
(BranchProtectionRule
)
Identifies the conflicting branch protection rule.
ref
(Ref
)
Identifies the branch ref that has conflicting rules.
BypassForcePushAllowanceA user, team, or app who has the ability to bypass a force push requirement on a protected branch.
BypassForcePushAllowance
Implements
Fields for BypassForcePushAllowance
Name Description
actor
(BranchActorAllowanceActor
)
The actor that can force push.
branchProtectionRule
(BranchProtectionRule
)
Identifies the branch protection rule associated with the allowed user, team, or app.
id
(ID!
)
The Node ID of the BypassForcePushAllowance object.
BypassPullRequestAllowanceA user, team, or app who has the ability to bypass a pull request requirement on a protected branch.
BypassPullRequestAllowance
Implements
Fields for BypassPullRequestAllowance
Name Description
actor
(BranchActorAllowanceActor
)
The actor that can bypass.
branchProtectionRule
(BranchProtectionRule
)
Identifies the branch protection rule associated with the allowed user, team, or app.
id
(ID!
)
The Node ID of the BypassPullRequestAllowance object.
CVSSThe Common Vulnerability Scoring System.
Fields forCVSS
Name Description
score
(Float!
)
The CVSS score associated with this advisory.
vectorString
(String
)
The CVSS vector string associated with this advisory.
CWEA common weakness enumeration.
CWE
Implements
Fields for CWE
Name Description
cweId
(String!
)
The id of the CWE.
description
(String!
)
A detailed description of this CWE.
id
(ID!
)
The Node ID of the CWE object.
name
(String!
)
The name of this CWE.
CWEConnectionThe connection type for CWE.
Fields forCWEConnection
Name Description
edges
([CWEEdge]
)
A list of edges.
nodes
([CWE]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
CWEEdgeAn edge in a connection.
Fields forCWEEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(CWE
)
The item at the end of the edge.
CheckAnnotationA single check annotation.
Fields forCheckAnnotation
Name Description
annotationLevel
(CheckAnnotationLevel
)
The annotation's severity level.
blobUrl
(URI!
)
The path to the file that this annotation was made on.
databaseId
(Int
)
Identifies the primary key from the database.
location
(CheckAnnotationSpan!
)
The position of this annotation.
message
(String!
)
The annotation's message.
path
(String!
)
The path that this annotation was made on.
rawDetails
(String
)
Additional information about the annotation.
title
(String
)
The annotation's title.
CheckAnnotationPositionA character position in a check annotation.
Fields forCheckAnnotationPosition
Name Description
column
(Int
)
Column number (1 indexed).
line
(Int!
)
Line number (1 indexed).
CheckAnnotationSpanAn inclusive pair of positions for a check annotation.
Fields forCheckAnnotationSpan
CheckRun
A check run.
CheckRun
Implements
Fields for CheckRun
Name Description
annotations
(CheckAnnotationConnection
)
The check run's annotations.
Arguments for annotations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
checkSuite
(CheckSuite!
)
The check suite that this run is a part of.
completedAt
(DateTime
)
Identifies the date and time when the check run was completed.
conclusion
(CheckConclusionState
)
The conclusion of the check run.
databaseId
(Int
)
Identifies the primary key from the database.
deployment
(Deployment
)
The corresponding deployment for this job, if any.
detailsUrl
(URI
)
The URL from which to find full details of the check run on the integrator's site.
externalId
(String
)
A reference for the check run on the integrator's system.
id
(ID!
)
The Node ID of the CheckRun object.
isRequired
(Boolean!
)
Whether this is required to pass before merging for a specific pull request.
Arguments for isRequired
pullRequestId
(ID
)
The id of the pull request this is required for.
pullRequestNumber
(Int
)
The number of the pull request this is required for.
name
(String!
)
The name of the check for this check run.
pendingDeploymentRequest
(DeploymentRequest
)
Information about a pending deployment, if any, in this check run.
permalink
(URI!
)
The permalink to the check run summary.
repository
(Repository!
)
The repository associated with this check run.
resourcePath
(URI!
)
The HTTP path for this check run.
startedAt
(DateTime
)
Identifies the date and time when the check run was started.
status
(CheckStatusState!
)
The current status of the check run.
steps
(CheckStepConnection
)
The check run's steps.
Arguments for steps
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
number
(Int
)
Step number.
summary
(String
)
A string representing the check run's summary.
text
(String
)
A string representing the check run's text.
title
(String
)
A string representing the check run.
url
(URI!
)
The HTTP URL for this check run.
CheckRunConnectionThe connection type for CheckRun.
Fields forCheckRunConnection
Name Description
edges
([CheckRunEdge]
)
A list of edges.
nodes
([CheckRun]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
CheckRunEdgeAn edge in a connection.
Fields forCheckRunEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(CheckRun
)
The item at the end of the edge.
CheckRunStateCountRepresents a count of the state of a check run.
Fields forCheckRunStateCount
Name Description
count
(Int!
)
The number of check runs with this state.
state
(CheckRunState!
)
The state of a check run.
CheckStepA single check step.
Fields forCheckStep
Name Description
completedAt
(DateTime
)
Identifies the date and time when the check step was completed.
conclusion
(CheckConclusionState
)
The conclusion of the check step.
externalId
(String
)
A reference for the check step on the integrator's system.
name
(String!
)
The step's name.
number
(Int!
)
The index of the step in the list of steps of the parent check run.
secondsToCompletion
(Int
)
Number of seconds to completion.
startedAt
(DateTime
)
Identifies the date and time when the check step was started.
status
(CheckStatusState!
)
The current status of the check step.
CheckStepConnectionThe connection type for CheckStep.
Fields forCheckStepConnection
Name Description
edges
([CheckStepEdge]
)
A list of edges.
nodes
([CheckStep]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
CheckStepEdgeAn edge in a connection.
Fields forCheckStepEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(CheckStep
)
The item at the end of the edge.
CheckSuiteA check suite.
CheckSuite
Implements
Fields for CheckSuite
Name Description
app
(App
)
The GitHub App which created this check suite.
branch
(Ref
)
The name of the branch for this check suite.
checkRuns
(CheckRunConnection
)
The check runs associated with a check suite.
Arguments for checkRuns
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
filterBy
(CheckRunFilter
)
Filters the check runs by this type.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
commit
(Commit!
)
The commit for this check suite.
conclusion
(CheckConclusionState
)
The conclusion of this check suite.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(User
)
The user who triggered the check suite.
databaseId
(Int
)
Identifies the primary key from the database.
id
(ID!
)
The Node ID of the CheckSuite object.
matchingPullRequests
(PullRequestConnection
)
A list of open pull requests matching the check suite.
Arguments for matchingPullRequests
after
(String
)
Returns the elements in the list that come after the specified cursor.
baseRefName
(String
)
The base ref name to filter the pull requests by.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
headRefName
(String
)
The head ref name to filter the pull requests by.
labels
([String!]
)
A list of label names to filter the pull requests by.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueOrder
)
Ordering options for pull requests returned from the connection.
states
([PullRequestState!]
)
A list of states to filter the pull requests by.
push
(Push
)
The push that triggered this check suite.
repository
(Repository!
)
The repository associated with this check suite.
resourcePath
(URI!
)
The HTTP path for this check suite.
status
(CheckStatusState!
)
The status of this check suite.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this check suite.
workflowRun
(WorkflowRun
)
The workflow run associated with this check suite.
CheckSuiteConnectionThe connection type for CheckSuite.
Fields forCheckSuiteConnection
Name Description
edges
([CheckSuiteEdge]
)
A list of edges.
nodes
([CheckSuite]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
CheckSuiteEdgeAn edge in a connection.
Fields forCheckSuiteEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(CheckSuite
)
The item at the end of the edge.
ClosedEventRepresents aclosed
event on any Closable
.
ClosedEvent
Implements
Fields for ClosedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
closable
(Closable!
)
Object that was closed.
closer
(Closer
)
Object which triggered the creation of this event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
duplicateOf
(IssueOrPullRequest
)
The issue or pull request that this issue was marked as a duplicate of.
id
(ID!
)
The Node ID of the ClosedEvent object.
resourcePath
(URI!
)
The HTTP path for this closed event.
stateReason
(IssueStateReason
)
The reason the issue state was changed to closed.
Warning
stateReason
is deprecated.
The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.
url
(URI!
)
The HTTP URL for this closed event.
CodeOfConductThe Code of Conduct for a repository.
CodeOfConduct
Implements
Fields for CodeOfConduct
Name Description
body
(String
)
The body of the Code of Conduct.
id
(ID!
)
The Node ID of the CodeOfConduct object.
key
(String!
)
The key for the Code of Conduct.
name
(String!
)
The formal name of the Code of Conduct.
resourcePath
(URI
)
The HTTP path for this Code of Conduct.
url
(URI
)
The HTTP URL for this Code of Conduct.
CodeScanningParametersChoose which tools must provide code scanning results before the reference is updated. When configured, code scanning must be enabled and have results for both the commit and the reference being updated.
Fields forCodeScanningParameters
Name Description
codeScanningTools
([CodeScanningTool!]!
)
Tools that must provide code scanning results for this rule to pass.
A tool that must provide code scanning results for this rule to pass.
Fields forCodeScanningTool
Name Description
alertsThreshold
(String!
)
The severity level at which code scanning results that raise alerts block a reference update. For more information on alert severity levels, see "About code scanning alerts.".
securityAlertsThreshold
(String!
)
The severity level at which code scanning results that raise security alerts block a reference update. For more information on security severity levels, see "About code scanning alerts.".
tool
(String!
)
The name of a code scanning tool.
Represents acomment_deleted
event on a given issue or pull request.
CommentDeletedEvent
Implements
Fields for CommentDeletedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
deletedCommentAuthor
(Actor
)
The user who authored the deleted comment.
id
(ID!
)
The Node ID of the CommentDeletedEvent object.
CommitRepresents a Git commit.
Commit
Implements
Fields for Commit
Name Description
abbreviatedOid
(String!
)
An abbreviated version of the Git object ID.
additions
(Int!
)
The number of additions in this commit.
associatedPullRequests
(PullRequestConnection
)
The merged Pull Request that introduced the commit to the repository. If the commit is not present in the default branch, additionally returns open Pull Requests associated with the commit.
Arguments for associatedPullRequests
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(PullRequestOrder
)
Ordering options for pull requests.
author
(GitActor
)
Authorship details of the commit.
authoredByCommitter
(Boolean!
)
Check if the committer and the author match.
authoredDate
(DateTime!
)
The datetime when this commit was authored.
authors
(GitActorConnection!
)
The list of authors for this commit based on the git author and the Co-authored-by message trailer. The git author will always be first.
Arguments for authors
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
blame
(Blame!
)
Fetches git blame
information.
Arguments for blame
path
(String!
)
The file whose Git blame information you want.
changedFiles
(Int!
)
We recommend using the changedFilesIfAvailable
field instead of changedFiles
, as changedFiles
will cause your request to return an error if GitHub is unable to calculate the number of changed files.
Warning
changedFiles
is deprecated.
changedFiles
will be removed. Use changedFilesIfAvailable
instead. Removal on 2023-01-01 UTC.
changedFilesIfAvailable
(Int
)
The number of changed files in this commit. If GitHub is unable to calculate the number of changed files (for example due to a timeout), this will return null
. We recommend using this field instead of changedFiles
.
checkSuites
(CheckSuiteConnection
)
The check suites associated with a commit.
Arguments for checkSuites
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
filterBy
(CheckSuiteFilter
)
Filters the check suites by this type.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
comments
(CommitCommentConnection!
)
Comments made on the commit.
Arguments for comments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
commitResourcePath
(URI!
)
The HTTP path for this Git object.
commitUrl
(URI!
)
The HTTP URL for this Git object.
committedDate
(DateTime!
)
The datetime when this commit was committed.
committedViaWeb
(Boolean!
)
Check if committed via GitHub web UI.
committer
(GitActor
)
Committer details of the commit.
deletions
(Int!
)
The number of deletions in this commit.
deployments
(DeploymentConnection
)
The deployments associated with a commit.
Arguments for deployments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
environments
([String!]
)
Environments to list deployments for.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(DeploymentOrder
)
Ordering options for deployments returned from the connection.
file
(TreeEntry
)
The tree entry representing the file located at the given path.
Arguments for file
path
(String!
)
The path for the file.
history
(CommitHistoryConnection!
)
The linear commit history starting from (and including) this commit, in the same order as git log
.
Arguments for history
after
(String
)
Returns the elements in the list that come after the specified cursor.
author
(CommitAuthor
)
If non-null, filters history to only show commits with matching authorship.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
path
(String
)
If non-null, filters history to only show commits touching files under this path.
since
(GitTimestamp
)
Allows specifying a beginning time or date for fetching commits. Unexpected results may be returned for dates not between 1970-01-01 and 2099-12-13 (inclusive).
until
(GitTimestamp
)
Allows specifying an ending time or date for fetching commits. Unexpected results may be returned for dates not between 1970-01-01 and 2099-12-13 (inclusive).
id
(ID!
)
The Node ID of the Commit object.
message
(String!
)
The Git commit message.
messageBody
(String!
)
The Git commit message body.
messageBodyHTML
(HTML!
)
The commit message body rendered to HTML.
messageHeadline
(String!
)
The Git commit message headline.
messageHeadlineHTML
(HTML!
)
The commit message headline rendered to HTML.
oid
(GitObjectID!
)
The Git object ID.
onBehalfOf
(Organization
)
The organization this commit was made on behalf of.
parents
(CommitConnection!
)
The parents of a commit.
Arguments for parents
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
pushedDate
(DateTime
)
The datetime when this commit was pushed.
Warning
pushedDate
is deprecated.
pushedDate
is no longer supported. Removal on 2023-07-01 UTC.
repository
(Repository!
)
The Repository this commit belongs to.
resourcePath
(URI!
)
The HTTP path for this commit.
signature
(GitSignature
)
Commit signing information, if present.
status
(Status
)
Status information for this commit.
statusCheckRollup
(StatusCheckRollup
)
Check and Status rollup information for this commit.
submodules
(SubmoduleConnection!
)
Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.
Arguments for submodules
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
tarballUrl
(URI!
)
Returns a URL to download a tarball archive for a repository. Note: For private repositories, these links are temporary and expire after five minutes.
tree
(Tree!
)
Commit's root Tree.
treeResourcePath
(URI!
)
The HTTP path for the tree of this commit.
treeUrl
(URI!
)
The HTTP URL for the tree of this commit.
url
(URI!
)
The HTTP URL for this commit.
viewerCanSubscribe
(Boolean!
)
Check if the viewer is able to change their subscription status for the repository.
viewerSubscription
(SubscriptionState
)
Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
zipballUrl
(URI!
)
Returns a URL to download a zipball archive for a repository. Note: For private repositories, these links are temporary and expire after five minutes.
Parameters to be used for the commit_author_email_pattern rule.
Fields forCommitAuthorEmailPatternParameters
Name Description
name
(String
)
How this rule will appear to users.
negate
(Boolean!
)
If true, the rule will fail if the pattern matches.
operator
(String!
)
The operator to use for matching.
pattern
(String!
)
The pattern to match with.
Represents a comment on a given Commit.
CommitComment
Implements
Fields for CommitComment
Name Description
author
(Actor
)
The actor who authored the comment.
authorAssociation
(CommentAuthorAssociation!
)
Author's association with the subject of the comment.
body
(String!
)
Identifies the comment body.
bodyHTML
(HTML!
)
The body rendered to HTML.
bodyText
(String!
)
The body rendered to text.
commit
(Commit
)
Identifies the commit associated with the comment, if the commit exists.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
createdViaEmail
(Boolean!
)
Check if this comment was created via an email reply.
databaseId
(Int
)
Identifies the primary key from the database.
editor
(Actor
)
The actor who edited the comment.
id
(ID!
)
The Node ID of the CommitComment object.
includesCreatedEdit
(Boolean!
)
Check if this comment was edited and includes an edit with the creation data.
isMinimized
(Boolean!
)
Returns whether or not a comment has been minimized.
lastEditedAt
(DateTime
)
The moment the editor made the last edit.
minimizedReason
(String
)
Returns why the comment was minimized. One of abuse
, off-topic
, outdated
, resolved
, duplicate
and spam
. Note that the case and formatting of these values differs from the inputs to the MinimizeComment
mutation.
path
(String
)
Identifies the file path associated with the comment.
position
(Int
)
Identifies the line position associated with the comment.
publishedAt
(DateTime
)
Identifies when the comment was published at.
reactionGroups
([ReactionGroup!]
)
A list of reactions grouped by content left on the subject.
reactions
(ReactionConnection!
)
A list of Reactions left on the Issue.
Arguments for reactions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
content
(ReactionContent
)
Allows filtering Reactions by emoji.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ReactionOrder
)
Allows specifying the order in which reactions are returned.
repository
(Repository!
)
The repository associated with this node.
resourcePath
(URI!
)
The HTTP path permalink for this commit comment.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL permalink for this commit comment.
userContentEdits
(UserContentEditConnection
)
A list of edits to this content.
Arguments for userContentEdits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
viewerCanDelete
(Boolean!
)
Check if the current viewer can delete this object.
viewerCanMinimize
(Boolean!
)
Check if the current viewer can minimize this object.
viewerCanReact
(Boolean!
)
Can user react to this subject.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
viewerCannotUpdateReasons
([CommentCannotUpdateReason!]!
)
Reasons why the current viewer can not update this comment.
viewerDidAuthor
(Boolean!
)
Did the viewer author this comment.
The connection type for CommitComment.
Fields forCommitCommentConnection
An edge in a connection.
Fields forCommitCommentEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(CommitComment
)
The item at the end of the edge.
A thread of comments on a commit.
CommitCommentThread
Implements
Fields for CommitCommentThread
Name Description
comments
(CommitCommentConnection!
)
The comments that exist in this thread.
Arguments for comments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
commit
(Commit
)
The commit the comments were made on.
id
(ID!
)
The Node ID of the CommitCommentThread object.
path
(String
)
The file the comments were made on.
position
(Int
)
The position in the diff for the commit that the comment was made on.
repository
(Repository!
)
The repository associated with this node.
CommitConnectionThe connection type for Commit.
Fields forCommitConnection
Name Description
edges
([CommitEdge]
)
A list of edges.
nodes
([Commit]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
CommitContributionsByRepositoryThis aggregates commits made by a user within one repository.
Fields forCommitContributionsByRepository
Name Description
contributions
(CreatedCommitContributionConnection!
)
The commit contributions, each representing a day.
Arguments for contributions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(CommitContributionOrder
)
Ordering options for commit contributions returned from the connection.
repository
(Repository!
)
The repository in which the commits were made.
resourcePath
(URI!
)
The HTTP path for the user's commits to the repository in this time range.
url
(URI!
)
The HTTP URL for the user's commits to the repository in this time range.
CommitEdgeAn edge in a connection.
Fields forCommitEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Commit
)
The item at the end of the edge.
CommitHistoryConnectionThe connection type for Commit.
Fields forCommitHistoryConnection
Name Description
edges
([CommitEdge]
)
A list of edges.
nodes
([Commit]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
CommitMessagePatternParametersParameters to be used for the commit_message_pattern rule.
Fields forCommitMessagePatternParameters
Name Description
name
(String
)
How this rule will appear to users.
negate
(Boolean!
)
If true, the rule will fail if the pattern matches.
operator
(String!
)
The operator to use for matching.
pattern
(String!
)
The pattern to match with.
CommitterEmailPatternParametersParameters to be used for the committer_email_pattern rule.
Fields forCommitterEmailPatternParameters
Name Description
name
(String
)
How this rule will appear to users.
negate
(Boolean!
)
If true, the rule will fail if the pattern matches.
operator
(String!
)
The operator to use for matching.
pattern
(String!
)
The pattern to match with.
ComparisonRepresents a comparison between two commit revisions.
Comparison
Implements
Fields for Comparison
Name Description
aheadBy
(Int!
)
The number of commits ahead of the base branch.
baseTarget
(GitObject!
)
The base revision of this comparison.
behindBy
(Int!
)
The number of commits behind the base branch.
commits
(ComparisonCommitConnection!
)
The commits which compose this comparison.
Arguments for commits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
headTarget
(GitObject!
)
The head revision of this comparison.
id
(ID!
)
The Node ID of the Comparison object.
status
(ComparisonStatus!
)
The status of this comparison.
ComparisonCommitConnectionThe connection type for Commit.
Fields forComparisonCommitConnection
Name Description
authorCount
(Int!
)
The total count of authors and co-authors across all commits.
edges
([CommitEdge]
)
A list of edges.
nodes
([Commit]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
ConnectedEventRepresents aconnected
event on a given issue or pull request.
ConnectedEvent
Implements
Fields for ConnectedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the ConnectedEvent object.
isCrossRepository
(Boolean!
)
Reference originated in a different repository.
source
(ReferencedSubject!
)
Issue or pull request that made the reference.
subject
(ReferencedSubject!
)
Issue or pull request which was connected.
ContributingGuidelinesThe Contributing Guidelines for a repository.
Fields forContributingGuidelines
Name Description
body
(String
)
The body of the Contributing Guidelines.
resourcePath
(URI
)
The HTTP path for the Contributing Guidelines.
url
(URI
)
The HTTP URL for the Contributing Guidelines.
ContributionCalendarA calendar of contributions made on GitHub by a user.
Fields forContributionCalendar
Name Description
colors
([String!]!
)
A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.
isHalloween
(Boolean!
)
Determine if the color set was chosen because it's currently Halloween.
months
([ContributionCalendarMonth!]!
)
A list of the months of contributions in this calendar.
totalContributions
(Int!
)
The count of total contributions in the calendar.
weeks
([ContributionCalendarWeek!]!
)
A list of the weeks of contributions in this calendar.
ContributionCalendarDayRepresents a single day of contributions on GitHub by a user.
Fields forContributionCalendarDay
Name Description
color
(String!
)
The hex color code that represents how many contributions were made on this day compared to others in the calendar.
contributionCount
(Int!
)
How many contributions were made by the user on this day.
contributionLevel
(ContributionLevel!
)
Indication of contributions, relative to other days. Can be used to indicate which color to represent this day on a calendar.
date
(Date!
)
The day this square represents.
weekday
(Int!
)
A number representing which day of the week this square represents, e.g., 1 is Monday.
ContributionCalendarMonthA month of contributions in a user's contribution graph.
Fields forContributionCalendarMonth
Name Description
firstDay
(Date!
)
The date of the first day of this month.
name
(String!
)
The name of the month.
totalWeeks
(Int!
)
How many weeks started in this month.
year
(Int!
)
The year the month occurred in.
ContributionCalendarWeekA week of contributions in a user's contribution graph.
Fields forContributionCalendarWeek
Name Description
contributionDays
([ContributionCalendarDay!]!
)
The days of contributions in this week.
firstDay
(Date!
)
The date of the earliest square in this week.
ContributionsCollectionA collection of contributions made by a user, including opened issues, commits, and pull requests. Contributions in private and internal repositories are only included with the optional read:user scope.
Fields forContributionsCollection
Name Description
commitContributionsByRepository
([CommitContributionsByRepository!]!
)
Commit contributions made by the user, grouped by repository.
Arguments for commitContributionsByRepository
maxRepositories
(Int
)
How many repositories should be included.
The default value is 25
.
contributionCalendar
(ContributionCalendar!
)
A calendar of this user's contributions on GitHub.
contributionYears
([Int!]!
)
The years the user has been making contributions with the most recent year first.
doesEndInCurrentMonth
(Boolean!
)
Determine if this collection's time span ends in the current month.
earliestRestrictedContributionDate
(Date
)
The date of the first restricted contribution the user made in this time period. Can only be non-null when the user has enabled private contribution counts.
endedAt
(DateTime!
)
The ending date and time of this collection.
firstIssueContribution
(CreatedIssueOrRestrictedContribution
)
The first issue the user opened on GitHub. This will be null if that issue was opened outside the collection's time range and ignoreTimeRange is false. If the issue is not visible but the user has opted to show private contributions, a RestrictedContribution will be returned.
firstPullRequestContribution
(CreatedPullRequestOrRestrictedContribution
)
The first pull request the user opened on GitHub. This will be null if that pull request was opened outside the collection's time range and ignoreTimeRange is not true. If the pull request is not visible but the user has opted to show private contributions, a RestrictedContribution will be returned.
firstRepositoryContribution
(CreatedRepositoryOrRestrictedContribution
)
The first repository the user created on GitHub. This will be null if that first repository was created outside the collection's time range and ignoreTimeRange is false. If the repository is not visible, then a RestrictedContribution is returned.
hasActivityInThePast
(Boolean!
)
Does the user have any more activity in the timeline that occurred prior to the collection's time range?.
hasAnyContributions
(Boolean!
)
Determine if there are any contributions in this collection.
hasAnyRestrictedContributions
(Boolean!
)
Determine if the user made any contributions in this time frame whose details are not visible because they were made in a private repository. Can only be true if the user enabled private contribution counts.
isSingleDay
(Boolean!
)
Whether or not the collector's time span is all within the same day.
issueContributions
(CreatedIssueContributionConnection!
)
A list of issues the user opened.
Arguments for issueContributions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
excludeFirst
(Boolean
)
Should the user's first issue ever be excluded from the result.
The default value is false
.
excludePopular
(Boolean
)
Should the user's most commented issue be excluded from the result.
The default value is false
.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ContributionOrder
)
Ordering options for contributions returned from the connection.
issueContributionsByRepository
([IssueContributionsByRepository!]!
)
Issue contributions made by the user, grouped by repository.
Arguments for issueContributionsByRepository
excludeFirst
(Boolean
)
Should the user's first issue ever be excluded from the result.
The default value is false
.
excludePopular
(Boolean
)
Should the user's most commented issue be excluded from the result.
The default value is false
.
maxRepositories
(Int
)
How many repositories should be included.
The default value is 25
.
joinedGitHubContribution
(JoinedGitHubContribution
)
When the user signed up for GitHub. This will be null if that sign up date falls outside the collection's time range and ignoreTimeRange is false.
latestRestrictedContributionDate
(Date
)
The date of the most recent restricted contribution the user made in this time period. Can only be non-null when the user has enabled private contribution counts.
mostRecentCollectionWithActivity
(ContributionsCollection
)
When this collection's time range does not include any activity from the user, use this to get a different collection from an earlier time range that does have activity.
mostRecentCollectionWithoutActivity
(ContributionsCollection
)
Returns a different contributions collection from an earlier time range than this one that does not have any contributions.
popularIssueContribution
(CreatedIssueContribution
)
The issue the user opened on GitHub that received the most comments in the specified time frame.
popularPullRequestContribution
(CreatedPullRequestContribution
)
The pull request the user opened on GitHub that received the most comments in the specified time frame.
pullRequestContributions
(CreatedPullRequestContributionConnection!
)
Pull request contributions made by the user.
Arguments for pullRequestContributions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
excludeFirst
(Boolean
)
Should the user's first pull request ever be excluded from the result.
The default value is false
.
excludePopular
(Boolean
)
Should the user's most commented pull request be excluded from the result.
The default value is false
.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ContributionOrder
)
Ordering options for contributions returned from the connection.
pullRequestContributionsByRepository
([PullRequestContributionsByRepository!]!
)
Pull request contributions made by the user, grouped by repository.
Arguments for pullRequestContributionsByRepository
excludeFirst
(Boolean
)
Should the user's first pull request ever be excluded from the result.
The default value is false
.
excludePopular
(Boolean
)
Should the user's most commented pull request be excluded from the result.
The default value is false
.
maxRepositories
(Int
)
How many repositories should be included.
The default value is 25
.
pullRequestReviewContributions
(CreatedPullRequestReviewContributionConnection!
)
Pull request review contributions made by the user. Returns the most recently submitted review for each PR reviewed by the user.
Arguments for pullRequestReviewContributions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ContributionOrder
)
Ordering options for contributions returned from the connection.
pullRequestReviewContributionsByRepository
([PullRequestReviewContributionsByRepository!]!
)
Pull request review contributions made by the user, grouped by repository.
Arguments for pullRequestReviewContributionsByRepository
maxRepositories
(Int
)
How many repositories should be included.
The default value is 25
.
repositoryContributions
(CreatedRepositoryContributionConnection!
)
A list of repositories owned by the user that the user created in this time range.
Arguments for repositoryContributions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
excludeFirst
(Boolean
)
Should the user's first repository ever be excluded from the result.
The default value is false
.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ContributionOrder
)
Ordering options for contributions returned from the connection.
restrictedContributionsCount
(Int!
)
A count of contributions made by the user that the viewer cannot access. Only non-zero when the user has chosen to share their private contribution counts.
startedAt
(DateTime!
)
The beginning date and time of this collection.
totalCommitContributions
(Int!
)
How many commits were made by the user in this time span.
totalIssueContributions
(Int!
)
How many issues the user opened.
Arguments for totalIssueContributions
excludeFirst
(Boolean
)
Should the user's first issue ever be excluded from this count.
The default value is false
.
excludePopular
(Boolean
)
Should the user's most commented issue be excluded from this count.
The default value is false
.
totalPullRequestContributions
(Int!
)
How many pull requests the user opened.
Arguments for totalPullRequestContributions
excludeFirst
(Boolean
)
Should the user's first pull request ever be excluded from this count.
The default value is false
.
excludePopular
(Boolean
)
Should the user's most commented pull request be excluded from this count.
The default value is false
.
totalPullRequestReviewContributions
(Int!
)
How many pull request reviews the user left.
totalRepositoriesWithContributedCommits
(Int!
)
How many different repositories the user committed to.
totalRepositoriesWithContributedIssues
(Int!
)
How many different repositories the user opened issues in.
Arguments for totalRepositoriesWithContributedIssues
excludeFirst
(Boolean
)
Should the user's first issue ever be excluded from this count.
The default value is false
.
excludePopular
(Boolean
)
Should the user's most commented issue be excluded from this count.
The default value is false
.
totalRepositoriesWithContributedPullRequestReviews
(Int!
)
How many different repositories the user left pull request reviews in.
totalRepositoriesWithContributedPullRequests
(Int!
)
How many different repositories the user opened pull requests in.
Arguments for totalRepositoriesWithContributedPullRequests
excludeFirst
(Boolean
)
Should the user's first pull request ever be excluded from this count.
The default value is false
.
excludePopular
(Boolean
)
Should the user's most commented pull request be excluded from this count.
The default value is false
.
totalRepositoryContributions
(Int!
)
How many repositories the user created.
Arguments for totalRepositoryContributions
excludeFirst
(Boolean
)
Should the user's first repository ever be excluded from this count.
The default value is false
.
user
(User!
)
The user who made the contributions in this collection.
ConvertToDraftEventRepresents aconvert_to_draft
event on a given pull request.
ConvertToDraftEvent
Implements
Fields for ConvertToDraftEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the ConvertToDraftEvent object.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
resourcePath
(URI!
)
The HTTP path for this convert to draft event.
url
(URI!
)
The HTTP URL for this convert to draft event.
ConvertedNoteToIssueEventRepresents aconverted_note_to_issue
event on a given issue or pull request.
ConvertedNoteToIssueEvent
Implements
Fields for ConvertedNoteToIssueEvent
ConvertedToDiscussionEvent
Represents aconverted_to_discussion
event on a given issue.
ConvertedToDiscussionEvent
Implements
Fields for ConvertedToDiscussionEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
discussion
(Discussion
)
The discussion that the issue was converted into.
id
(ID!
)
The Node ID of the ConvertedToDiscussionEvent object.
CopilotEndpointsCopilot endpoint information.
Fields forCopilotEndpoints
Name Description
api
(String!
)
Copilot API endpoint.
originTracker
(String!
)
Copilot origin tracker endpoint.
proxy
(String!
)
Copilot proxy endpoint.
telemetry
(String!
)
Copilot telemetry endpoint.
CreatedCommitContributionRepresents the contribution a user made by committing to a repository.
CreatedCommitContribution
Implements
Fields for CreatedCommitContribution
Name Description
commitCount
(Int!
)
How many commits were made on this day to this repository by the user.
isRestricted
(Boolean!
)
Whether this contribution is associated with a record you do not have access to. For example, your own 'first issue' contribution may have been made on a repository you can no longer access.
occurredAt
(DateTime!
)
When this contribution was made.
repository
(Repository!
)
The repository the user made a commit in.
resourcePath
(URI!
)
The HTTP path for this contribution.
url
(URI!
)
The HTTP URL for this contribution.
user
(User!
)
The user who made this contribution.
CreatedIssueContributionRepresents the contribution a user made on GitHub by opening an issue.
CreatedIssueContribution
Implements
Fields for CreatedIssueContribution
Name Description
isRestricted
(Boolean!
)
Whether this contribution is associated with a record you do not have access to. For example, your own 'first issue' contribution may have been made on a repository you can no longer access.
issue
(Issue!
)
The issue that was opened.
occurredAt
(DateTime!
)
When this contribution was made.
resourcePath
(URI!
)
The HTTP path for this contribution.
url
(URI!
)
The HTTP URL for this contribution.
user
(User!
)
The user who made this contribution.
CreatedPullRequestContributionRepresents the contribution a user made on GitHub by opening a pull request.
CreatedPullRequestContribution
Implements
Fields for CreatedPullRequestContribution
Name Description
isRestricted
(Boolean!
)
Whether this contribution is associated with a record you do not have access to. For example, your own 'first issue' contribution may have been made on a repository you can no longer access.
occurredAt
(DateTime!
)
When this contribution was made.
pullRequest
(PullRequest!
)
The pull request that was opened.
resourcePath
(URI!
)
The HTTP path for this contribution.
url
(URI!
)
The HTTP URL for this contribution.
user
(User!
)
The user who made this contribution.
CreatedPullRequestReviewContributionRepresents the contribution a user made by leaving a review on a pull request.
CreatedPullRequestReviewContribution
Implements
Fields for CreatedPullRequestReviewContribution
Name Description
isRestricted
(Boolean!
)
Whether this contribution is associated with a record you do not have access to. For example, your own 'first issue' contribution may have been made on a repository you can no longer access.
occurredAt
(DateTime!
)
When this contribution was made.
pullRequest
(PullRequest!
)
The pull request the user reviewed.
pullRequestReview
(PullRequestReview!
)
The review the user left on the pull request.
repository
(Repository!
)
The repository containing the pull request that the user reviewed.
resourcePath
(URI!
)
The HTTP path for this contribution.
url
(URI!
)
The HTTP URL for this contribution.
user
(User!
)
The user who made this contribution.
CreatedRepositoryContributionRepresents the contribution a user made on GitHub by creating a repository.
CreatedRepositoryContribution
Implements
Fields for CreatedRepositoryContribution
Name Description
isRestricted
(Boolean!
)
Whether this contribution is associated with a record you do not have access to. For example, your own 'first issue' contribution may have been made on a repository you can no longer access.
occurredAt
(DateTime!
)
When this contribution was made.
repository
(Repository!
)
The repository that was created.
resourcePath
(URI!
)
The HTTP path for this contribution.
url
(URI!
)
The HTTP URL for this contribution.
user
(User!
)
The user who made this contribution.
CrossReferencedEventRepresents a mention made by one issue or pull request to another.
CrossReferencedEvent
Implements
Fields for CrossReferencedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the CrossReferencedEvent object.
isCrossRepository
(Boolean!
)
Reference originated in a different repository.
referencedAt
(DateTime!
)
Identifies when the reference was made.
resourcePath
(URI!
)
The HTTP path for this pull request.
source
(ReferencedSubject!
)
Issue or pull request that made the reference.
target
(ReferencedSubject!
)
Issue or pull request to which the reference was made.
url
(URI!
)
The HTTP URL for this pull request.
willCloseTarget
(Boolean!
)
Checks if the target will be closed when the source is merged.
CvssSeveritiesThe Common Vulnerability Scoring System.
Fields forCvssSeverities
Name Description
cvssV3
(CVSS
)
The CVSS v3 severity associated with this advisory.
cvssV4
(CVSS
)
The CVSS v4 severity associated with this advisory.
DemilestonedEventRepresents ademilestoned
event on a given issue or pull request.
DemilestonedEvent
Implements
Fields for DemilestonedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the DemilestonedEvent object.
milestoneTitle
(String!
)
Identifies the milestone title associated with thedemilestoned
event.
subject
(MilestoneItem!
)
Object referenced by event.
DependabotUpdateErrorAn error produced from a Dependabot Update.
Fields forDependabotUpdateError
Name Description
body
(String!
)
The body of the error.
errorType
(String!
)
The error code.
title
(String!
)
The title of the error.
DependencyGraphDependencyA dependency manifest entry.
Fields forDependencyGraphDependency
Name Description
hasDependencies
(Boolean!
)
Does the dependency itself have dependencies?.
packageLabel
(String!
)
The original name of the package, as it appears in the manifest.
Warning
packageLabel
is deprecated.
packageLabel
will be removed. Use normalized packageName
field instead. Removal on 2022-10-01 UTC.
packageManager
(String
)
The dependency package manager.
packageName
(String!
)
The name of the package in the canonical form used by the package manager.
packageUrl
(URI
)
Public preview: The dependency package URL.
relationship
(String!
)
Public preview: The relationship of the dependency. Can be direct, transitive, or unknown.
repository
(Repository
)
The repository containing the package.
requirements
(String!
)
The dependency version requirements.
DependencyGraphManifestDependency manifest for a repository.
DependencyGraphManifest
Implements
Fields for DependencyGraphManifest
Name Description
blobPath
(String!
)
Path to view the manifest file blob.
dependencies
(DependencyGraphDependencyConnection
)
A list of manifest dependencies.
Arguments for dependencies
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
dependenciesCount
(Int
)
The number of dependencies listed in the manifest.
exceedsMaxSize
(Boolean!
)
Is the manifest too big to parse?.
filename
(String!
)
Fully qualified manifest filename.
id
(ID!
)
The Node ID of the DependencyGraphManifest object.
parseable
(Boolean!
)
Were we able to parse the manifest?.
repository
(Repository!
)
The repository containing the manifest.
DeployKeyA repository deploy key.
DeployKey
Implements
Fields for DeployKey
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
enabled
(Boolean!
)
Whether or not the deploy key is enabled by policy at the Enterprise or Organization level.
id
(ID!
)
The Node ID of the DeployKey object.
key
(String!
)
The deploy key.
readOnly
(Boolean!
)
Whether or not the deploy key is read only.
title
(String!
)
The deploy key title.
verified
(Boolean!
)
Whether or not the deploy key has been verified.
DeployKeyConnectionThe connection type for DeployKey.
Fields forDeployKeyConnection
Name Description
edges
([DeployKeyEdge]
)
A list of edges.
nodes
([DeployKey]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
DeployKeyEdgeAn edge in a connection.
Fields forDeployKeyEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(DeployKey
)
The item at the end of the edge.
DeployedEventRepresents adeployed
event on a given pull request.
DeployedEvent
Implements
Fields for DeployedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
deployment
(Deployment!
)
The deployment associated with thedeployed
event.
id
(ID!
)
The Node ID of the DeployedEvent object.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
ref
(Ref
)
The ref associated with thedeployed
event.
Represents triggered deployment instance.
Deployment
Implements
Fields for Deployment
Name Description
commit
(Commit
)
Identifies the commit sha of the deployment.
commitOid
(String!
)
Identifies the oid of the deployment commit, even if the commit has been deleted.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor!
)
Identifies the actor who triggered the deployment.
databaseId
(Int
)
Identifies the primary key from the database.
description
(String
)
The deployment description.
environment
(String
)
The latest environment to which this deployment was made.
id
(ID!
)
The Node ID of the Deployment object.
latestEnvironment
(String
)
The latest environment to which this deployment was made.
latestStatus
(DeploymentStatus
)
The latest status of this deployment.
originalEnvironment
(String
)
The original environment to which this deployment was made.
payload
(String
)
Extra information that a deployment system might need.
ref
(Ref
)
Identifies the Ref of the deployment, if the deployment was created by ref.
repository
(Repository!
)
Identifies the repository associated with the deployment.
state
(DeploymentState
)
The current state of the deployment.
statuses
(DeploymentStatusConnection
)
A list of statuses associated with the deployment.
Arguments for statuses
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
task
(String
)
The deployment task.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
DeploymentConnectionThe connection type for Deployment.
Fields forDeploymentConnection
Name Description
edges
([DeploymentEdge]
)
A list of edges.
nodes
([Deployment]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
DeploymentEdgeAn edge in a connection.
Fields forDeploymentEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Deployment
)
The item at the end of the edge.
DeploymentEnvironmentChangedEventRepresents adeployment_environment_changed
event on a given pull request.
DeploymentEnvironmentChangedEvent
Implements
Fields for DeploymentEnvironmentChangedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
deploymentStatus
(DeploymentStatus!
)
The deployment status that updated the deployment environment.
id
(ID!
)
The Node ID of the DeploymentEnvironmentChangedEvent object.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
DeploymentProtectionRuleA protection rule.
Fields forDeploymentProtectionRule
Name Description
databaseId
(Int
)
Identifies the primary key from the database.
preventSelfReview
(Boolean
)
Whether deployments to this environment can be approved by the user who created the deployment.
reviewers
(DeploymentReviewerConnection!
)
The teams or users that can review the deployment.
Arguments for reviewers
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
timeout
(Int!
)
The timeout in minutes for this protection rule.
type
(DeploymentProtectionRuleType!
)
The type of protection rule.
DeploymentRequestA request to deploy a workflow run to an environment.
Fields forDeploymentRequest
Name Description
currentUserCanApprove
(Boolean!
)
Whether or not the current user can approve the deployment.
environment
(Environment!
)
The target environment of the deployment.
reviewers
(DeploymentReviewerConnection!
)
The teams or users that can review the deployment.
Arguments for reviewers
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
waitTimer
(Int!
)
The wait timer in minutes configured in the environment.
waitTimerStartedAt
(DateTime
)
The wait timer in minutes configured in the environment.
DeploymentReviewA deployment review.
DeploymentReview
Implements
Fields for DeploymentReview
Name Description
comment
(String!
)
The comment the user left.
databaseId
(Int
)
Identifies the primary key from the database.
environments
(EnvironmentConnection!
)
The environments approved or rejected.
Arguments for environments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
id
(ID!
)
The Node ID of the DeploymentReview object.
state
(DeploymentReviewState!
)
The decision of the user.
user
(User!
)
The user that reviewed the deployment.
DeploymentStatusDescribes the status of a given deployment attempt.
DeploymentStatus
Implements
Fields for DeploymentStatus
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor!
)
Identifies the actor who triggered the deployment.
deployment
(Deployment!
)
Identifies the deployment associated with status.
description
(String
)
Identifies the description of the deployment.
environment
(String
)
Identifies the environment of the deployment at the time of this deployment status.
environmentUrl
(URI
)
Identifies the environment URL of the deployment.
id
(ID!
)
The Node ID of the DeploymentStatus object.
logUrl
(URI
)
Identifies the log URL of the deployment.
state
(DeploymentStatusState!
)
Identifies the current state of the deployment.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
DisconnectedEventRepresents adisconnected
event on a given issue or pull request.
DisconnectedEvent
Implements
Fields for DisconnectedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the DisconnectedEvent object.
isCrossRepository
(Boolean!
)
Reference originated in a different repository.
source
(ReferencedSubject!
)
Issue or pull request from which the issue was disconnected.
subject
(ReferencedSubject!
)
Issue or pull request which was disconnected.
DiscussionA discussion in a repository.
Discussion
Implements
Closable
Comment
Deletable
Labelable
Lockable
Node
Reactable
RepositoryNode
Subscribable
Updatable
Votable
Discussion
Name Description
activeLockReason
(LockReason
)
Reason that the conversation was locked.
answer
(DiscussionComment
)
The comment chosen as this discussion's answer, if any.
answerChosenAt
(DateTime
)
The time when a user chose this discussion's answer, if answered.
answerChosenBy
(Actor
)
The user who chose this discussion's answer, if answered.
author
(Actor
)
The actor who authored the comment.
authorAssociation
(CommentAuthorAssociation!
)
Author's association with the subject of the comment.
body
(String!
)
The main text of the discussion post.
bodyHTML
(HTML!
)
The body rendered to HTML.
bodyText
(String!
)
The body rendered to text.
category
(DiscussionCategory!
)
The category for this discussion.
closed
(Boolean!
)
Indicates if the object is closed (definition of closed may depend on type).
closedAt
(DateTime
)
Identifies the date and time when the object was closed.
comments
(DiscussionCommentConnection!
)
The replies to the discussion.
Arguments for comments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
createdViaEmail
(Boolean!
)
Check if this comment was created via an email reply.
databaseId
(Int
)
Identifies the primary key from the database.
editor
(Actor
)
The actor who edited the comment.
id
(ID!
)
The Node ID of the Discussion object.
includesCreatedEdit
(Boolean!
)
Check if this comment was edited and includes an edit with the creation data.
isAnswered
(Boolean
)
Only return answered/unanswered discussions.
labels
(LabelConnection
)
A list of labels associated with the object.
Arguments for labels
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(LabelOrder
)
Ordering options for labels returned from the connection.
lastEditedAt
(DateTime
)
The moment the editor made the last edit.
locked
(Boolean!
)
true
if the object is locked.
number
(Int!
)
The number identifying this discussion within the repository.
poll
(DiscussionPoll
)
The poll associated with this discussion, if one exists.
publishedAt
(DateTime
)
Identifies when the comment was published at.
reactionGroups
([ReactionGroup!]
)
A list of reactions grouped by content left on the subject.
reactions
(ReactionConnection!
)
A list of Reactions left on the Issue.
Arguments for reactions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
content
(ReactionContent
)
Allows filtering Reactions by emoji.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ReactionOrder
)
Allows specifying the order in which reactions are returned.
repository
(Repository!
)
The repository associated with this node.
resourcePath
(URI!
)
The path for this discussion.
stateReason
(DiscussionStateReason
)
Identifies the reason for the discussion's state.
title
(String!
)
The title of this discussion.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
upvoteCount
(Int!
)
Number of upvotes that this subject has received.
url
(URI!
)
The URL for this discussion.
userContentEdits
(UserContentEditConnection
)
A list of edits to this content.
Arguments for userContentEdits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
viewerCanClose
(Boolean!
)
Indicates if the object can be closed by the viewer.
viewerCanDelete
(Boolean!
)
Check if the current viewer can delete this object.
viewerCanLabel
(Boolean!
)
Indicates if the viewer can edit labels for this object.
viewerCanReact
(Boolean!
)
Can user react to this subject.
viewerCanReopen
(Boolean!
)
Indicates if the object can be reopened by the viewer.
viewerCanSubscribe
(Boolean!
)
Check if the viewer is able to change their subscription status for the repository.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
viewerCanUpvote
(Boolean!
)
Whether or not the current user can add or remove an upvote on this subject.
viewerDidAuthor
(Boolean!
)
Did the viewer author this comment.
viewerHasUpvoted
(Boolean!
)
Whether or not the current user has already upvoted this subject.
viewerSubscription
(SubscriptionState
)
Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
DiscussionCategoryA category for discussions in a repository.
DiscussionCategory
Implements
Fields for DiscussionCategory
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
description
(String
)
A description of this category.
emoji
(String!
)
An emoji representing this category.
emojiHTML
(HTML!
)
This category's emoji rendered as HTML.
id
(ID!
)
The Node ID of the DiscussionCategory object.
isAnswerable
(Boolean!
)
Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.
name
(String!
)
The name of this category.
repository
(Repository!
)
The repository associated with this node.
slug
(String!
)
The slug of this category.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
A comment on a discussion.
DiscussionComment
Implements
Fields for DiscussionComment
Name Description
author
(Actor
)
The actor who authored the comment.
authorAssociation
(CommentAuthorAssociation!
)
Author's association with the subject of the comment.
body
(String!
)
The body as Markdown.
bodyHTML
(HTML!
)
The body rendered to HTML.
bodyText
(String!
)
The body rendered to text.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
createdViaEmail
(Boolean!
)
Check if this comment was created via an email reply.
databaseId
(Int
)
Identifies the primary key from the database.
deletedAt
(DateTime
)
The time when this replied-to comment was deleted.
discussion
(Discussion
)
The discussion this comment was created in.
editor
(Actor
)
The actor who edited the comment.
id
(ID!
)
The Node ID of the DiscussionComment object.
includesCreatedEdit
(Boolean!
)
Check if this comment was edited and includes an edit with the creation data.
isAnswer
(Boolean!
)
Has this comment been chosen as the answer of its discussion?.
isMinimized
(Boolean!
)
Returns whether or not a comment has been minimized.
lastEditedAt
(DateTime
)
The moment the editor made the last edit.
minimizedReason
(String
)
Returns why the comment was minimized. One of abuse
, off-topic
, outdated
, resolved
, duplicate
and spam
. Note that the case and formatting of these values differs from the inputs to the MinimizeComment
mutation.
publishedAt
(DateTime
)
Identifies when the comment was published at.
reactionGroups
([ReactionGroup!]
)
A list of reactions grouped by content left on the subject.
reactions
(ReactionConnection!
)
A list of Reactions left on the Issue.
Arguments for reactions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
content
(ReactionContent
)
Allows filtering Reactions by emoji.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ReactionOrder
)
Allows specifying the order in which reactions are returned.
replies
(DiscussionCommentConnection!
)
The threaded replies to this comment.
Arguments for replies
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
replyTo
(DiscussionComment
)
The discussion comment this comment is a reply to.
resourcePath
(URI!
)
The path for this discussion comment.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
upvoteCount
(Int!
)
Number of upvotes that this subject has received.
url
(URI!
)
The URL for this discussion comment.
userContentEdits
(UserContentEditConnection
)
A list of edits to this content.
Arguments for userContentEdits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
viewerCanDelete
(Boolean!
)
Check if the current viewer can delete this object.
viewerCanMarkAsAnswer
(Boolean!
)
Can the current user mark this comment as an answer?.
viewerCanMinimize
(Boolean!
)
Check if the current viewer can minimize this object.
viewerCanReact
(Boolean!
)
Can user react to this subject.
viewerCanUnmarkAsAnswer
(Boolean!
)
Can the current user unmark this comment as an answer?.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
viewerCanUpvote
(Boolean!
)
Whether or not the current user can add or remove an upvote on this subject.
viewerCannotUpdateReasons
([CommentCannotUpdateReason!]!
)
Reasons why the current viewer can not update this comment.
viewerDidAuthor
(Boolean!
)
Did the viewer author this comment.
viewerHasUpvoted
(Boolean!
)
Whether or not the current user has already upvoted this subject.
The connection type for DiscussionComment.
Fields forDiscussionCommentConnection
An edge in a connection.
Fields forDiscussionCommentEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(DiscussionComment
)
The item at the end of the edge.
DiscussionConnectionThe connection type for Discussion.
Fields forDiscussionConnection
Name Description
edges
([DiscussionEdge]
)
A list of edges.
nodes
([Discussion]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
DiscussionEdgeAn edge in a connection.
Fields forDiscussionEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Discussion
)
The item at the end of the edge.
DiscussionPollA poll for a discussion.
DiscussionPoll
Implements
Fields for DiscussionPoll
Name Description
discussion
(Discussion
)
The discussion that this poll belongs to.
id
(ID!
)
The Node ID of the DiscussionPoll object.
options
(DiscussionPollOptionConnection
)
The options for this poll.
Arguments for options
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(DiscussionPollOptionOrder
)
How to order the options for the discussion poll.
question
(String!
)
The question that is being asked by this poll.
totalVoteCount
(Int!
)
The total number of votes that have been cast for this poll.
viewerCanVote
(Boolean!
)
Indicates if the viewer has permission to vote in this poll.
viewerHasVoted
(Boolean!
)
Indicates if the viewer has voted for any option in this poll.
DiscussionPollOptionAn option for a discussion poll.
DiscussionPollOption
Implements
Fields for DiscussionPollOption
Name Description
id
(ID!
)
The Node ID of the DiscussionPollOption object.
option
(String!
)
The text for this option.
poll
(DiscussionPoll
)
The discussion poll that this option belongs to.
totalVoteCount
(Int!
)
The total number of votes that have been cast for this option.
viewerHasVoted
(Boolean!
)
Indicates if the viewer has voted for this option in the poll.
DraftIssueA draft issue within a project.
DraftIssue
Implements
Fields for DraftIssue
Name Description
assignees
(UserConnection!
)
A list of users to assigned to this draft issue.
Arguments for assignees
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
body
(String!
)
The body of the draft issue.
bodyHTML
(HTML!
)
The body of the draft issue rendered to HTML.
bodyText
(String!
)
The body of the draft issue rendered to text.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor
)
The actor who created this draft issue.
id
(ID!
)
The Node ID of the DraftIssue object.
projectV2Items
(ProjectV2ItemConnection!
)
List of items linked with the draft issue (currently draft issue can be linked to only one item).
Arguments for projectV2Items
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
projectsV2
(ProjectV2Connection!
)
Projects that link to this draft issue (currently draft issue can be linked to only one project).
Arguments for projectsV2
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
title
(String!
)
The title of the draft issue.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
EPSSThe Exploit Prediction Scoring System.
Fields forEPSS
Name Description
percentage
(Float
)
The EPSS percentage represents the likelihood of a CVE being exploited.
percentile
(Float
)
The EPSS percentile represents the relative rank of the CVE's likelihood of being exploited compared to other CVEs.
EnterpriseAn account to manage multiple organizations with consolidated policy and billing.
Enterprise
Implements
Fields for Enterprise
Name Description
announcementBanner
(AnnouncementBanner
)
The announcement banner set on this enterprise, if any. Only visible to members of the enterprise.
avatarUrl
(URI!
)
A URL pointing to the enterprise's public avatar.
Arguments for avatarUrl
size
(Int
)
The size of the resulting square image.
billingEmail
(String
)
The enterprise's billing email.
billingInfo
(EnterpriseBillingInfo
)
Enterprise billing information visible to enterprise billing managers.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
description
(String
)
The description of the enterprise.
descriptionHTML
(HTML!
)
The description of the enterprise as HTML.
id
(ID!
)
The Node ID of the Enterprise object.
location
(String
)
The location of the enterprise.
members
(EnterpriseMemberConnection!
)
A list of users who are members of this enterprise.
Arguments for members
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
deployment
(EnterpriseUserDeployment
)
Only return members within the selected GitHub Enterprise deployment.
first
(Int
)
Returns the first n elements from the list.
hasTwoFactorEnabled
(Boolean
)
Only return members with this two-factor authentication status. Does not include members who only have an account on a GitHub Enterprise Server instance.
Upcoming Change on 2025-04-01 UTC Description: hasTwoFactorEnabled
will be removed. Use two_factor_method_security
instead. Reason: has_two_factor_enabled
will be removed.
last
(Int
)
Returns the last n elements from the list.
orderBy
(EnterpriseMemberOrder
)
Ordering options for members returned from the connection.
organizationLogins
([String!]
)
Only return members within the organizations with these logins.
query
(String
)
The search string to look for.
role
(EnterpriseUserAccountMembershipRole
)
The role of the user in the enterprise organization or server.
twoFactorMethodSecurity
(TwoFactorCredentialSecurityType
)
Only return members with this type of two-factor authentication method. Does not include members who only have an account on a GitHub Enterprise Server instance.
name
(String!
)
The name of the enterprise.
organizations
(OrganizationConnection!
)
A list of organizations that belong to this enterprise.
Arguments for organizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations returned from the connection.
query
(String
)
The search string to look for.
viewerOrganizationRole
(RoleInOrganization
)
The viewer's role in an organization.
ownerInfo
(EnterpriseOwnerInfo
)
Enterprise information visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.
readme
(String
)
The raw content of the enterprise README.
readmeHTML
(HTML!
)
The content of the enterprise README as HTML.
resourcePath
(URI!
)
The HTTP path for this enterprise.
ruleset
(RepositoryRuleset
)
Returns a single ruleset from the current enterprise by ID.
Arguments for ruleset
databaseId
(Int!
)
The ID of the ruleset to be returned.
rulesets
(RepositoryRulesetConnection
)
A list of rulesets for this enterprise.
Arguments for rulesets
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
slug
(String!
)
The URL-friendly identifier for the enterprise.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this enterprise.
userNamespaceRepositories
(UserNamespaceRepositoryConnection!
)
A list of repositories that belong to users. Only available for enterprises with Enterprise Managed Users.
Arguments for userNamespaceRepositories
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryOrder
)
Ordering options for repositories returned from the connection.
query
(String
)
The search string to look for.
viewerIsAdmin
(Boolean!
)
Is the current viewer an admin of this enterprise?.
websiteUrl
(URI
)
The URL of the enterprise website.
EnterpriseAdministratorInvitationAn invitation for a user to become an owner or billing manager of an enterprise.
EnterpriseAdministratorInvitation
Implements
Fields for EnterpriseAdministratorInvitation
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
email
(String
)
The email of the person who was invited to the enterprise.
enterprise
(Enterprise!
)
The enterprise the invitation is for.
id
(ID!
)
The Node ID of the EnterpriseAdministratorInvitation object.
invitee
(User
)
The user who was invited to the enterprise.
inviter
(User
)
The user who created the invitation.
role
(EnterpriseAdministratorRole!
)
The invitee's pending role in the enterprise (owner or billing_manager).
EnterpriseBillingInfoEnterprise billing information visible to enterprise billing managers and owners.
Fields forEnterpriseBillingInfo
Name Description
allLicensableUsersCount
(Int!
)
The number of licenseable users/emails across the enterprise.
assetPacks
(Int!
)
The number of data packs used by all organizations owned by the enterprise.
bandwidthQuota
(Float!
)
The bandwidth quota in GB for all organizations owned by the enterprise.
bandwidthUsage
(Float!
)
The bandwidth usage in GB for all organizations owned by the enterprise.
bandwidthUsagePercentage
(Int!
)
The bandwidth usage as a percentage of the bandwidth quota.
storageQuota
(Float!
)
The storage quota in GB for all organizations owned by the enterprise.
storageUsage
(Float!
)
The storage usage in GB for all organizations owned by the enterprise.
storageUsagePercentage
(Int!
)
The storage usage as a percentage of the storage quota.
totalAvailableLicenses
(Int!
)
The number of available licenses across all owned organizations based on the unique number of billable users.
totalLicenses
(Int!
)
The total number of licenses allocated.
EnterpriseConnectionThe connection type for Enterprise.
Fields forEnterpriseConnection
Name Description
edges
([EnterpriseEdge]
)
A list of edges.
nodes
([Enterprise]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
EnterpriseEdgeAn edge in a connection.
Fields forEnterpriseEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Enterprise
)
The item at the end of the edge.
EnterpriseIdentityProviderAn identity provider configured to provision identities for an enterprise. Visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.
EnterpriseIdentityProvider
Implements
Fields for EnterpriseIdentityProvider
Name Description
digestMethod
(SamlDigestAlgorithm
)
The digest algorithm used to sign SAML requests for the identity provider.
enterprise
(Enterprise
)
The enterprise this identity provider belongs to.
externalIdentities
(ExternalIdentityConnection!
)
ExternalIdentities provisioned by this identity provider.
Arguments for externalIdentities
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
login
(String
)
Filter to external identities with the users login.
membersOnly
(Boolean
)
Filter to external identities with valid org membership only.
userName
(String
)
Filter to external identities with the users userName/NameID attribute.
id
(ID!
)
The Node ID of the EnterpriseIdentityProvider object.
idpCertificate
(X509Certificate
)
The x509 certificate used by the identity provider to sign assertions and responses.
issuer
(String
)
The Issuer Entity ID for the SAML identity provider.
recoveryCodes
([String!]
)
Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.
signatureMethod
(SamlSignatureAlgorithm
)
The signature algorithm used to sign SAML requests for the identity provider.
ssoUrl
(URI
)
The URL endpoint for the identity provider's SAML SSO.
EnterpriseMemberEdgeA User who is a member of an enterprise through one or more organizations.
Fields forEnterpriseMemberEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(EnterpriseMember
)
The item at the end of the edge.
EnterpriseMemberInvitationAn invitation for a user to become an unaffiliated member of an enterprise.
EnterpriseMemberInvitation
Implements
Fields for EnterpriseMemberInvitation
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
email
(String
)
The email of the person who was invited to the enterprise.
enterprise
(Enterprise!
)
The enterprise the invitation is for.
id
(ID!
)
The Node ID of the EnterpriseMemberInvitation object.
invitee
(User
)
The user who was invited to the enterprise.
inviter
(User
)
The user who created the invitation.
EnterpriseOutsideCollaboratorEdgeA User who is an outside collaborator of an enterprise through one or more organizations.
Fields forEnterpriseOutsideCollaboratorEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(User
)
The item at the end of the edge.
repositories
(EnterpriseRepositoryInfoConnection!
)
The enterprise organization repositories this user is a member of.
Arguments for repositories
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryOrder
)
Ordering options for repositories.
Enterprise information visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.
Fields forEnterpriseOwnerInfo
Name Description
admins
(EnterpriseAdministratorConnection!
)
A list of all of the administrators for this enterprise.
Arguments for admins
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
hasTwoFactorEnabled
(Boolean
)
Only return administrators with this two-factor authentication status.
Upcoming Change on 2025-04-01 UTC Description: hasTwoFactorEnabled
will be removed. Use two_factor_method_security
instead. Reason: has_two_factor_enabled
will be removed.
last
(Int
)
Returns the last n elements from the list.
orderBy
(EnterpriseMemberOrder
)
Ordering options for administrators returned from the connection.
organizationLogins
([String!]
)
Only return members within the organizations with these logins.
query
(String
)
The search string to look for.
role
(EnterpriseAdministratorRole
)
The role to filter by.
twoFactorMethodSecurity
(TwoFactorCredentialSecurityType
)
Only return outside collaborators with this type of two-factor authentication method.
affiliatedUsersWithTwoFactorDisabled
(UserConnection!
)
A list of users in the enterprise who currently have two-factor authentication disabled.
Arguments for affiliatedUsersWithTwoFactorDisabled
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
affiliatedUsersWithTwoFactorDisabledExist
(Boolean!
)
Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.
allowPrivateRepositoryForkingSetting
(EnterpriseEnabledDisabledSettingValue!
)
The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.
allowPrivateRepositoryForkingSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided private repository forking setting value.
Arguments for allowPrivateRepositoryForkingSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(Boolean!
)
The setting value to find organizations for.
allowPrivateRepositoryForkingSettingPolicyValue
(EnterpriseAllowPrivateRepositoryForkingPolicyValue
)
The value for the allow private repository forking policy on the enterprise.
defaultRepositoryPermissionSetting
(EnterpriseDefaultRepositoryPermissionSettingValue!
)
The setting value for base repository permissions for organizations in this enterprise.
defaultRepositoryPermissionSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided base repository permission.
Arguments for defaultRepositoryPermissionSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(DefaultRepositoryPermissionField!
)
The permission to find organizations for.
domains
(VerifiableDomainConnection!
)
A list of domains owned by the enterprise. Visible to enterprise owners or enterprise owners' personal access tokens (classic) with admin:enterprise scope.
Arguments for domains
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
isApproved
(Boolean
)
Filter whether or not the domain is approved.
isVerified
(Boolean
)
Filter whether or not the domain is verified.
last
(Int
)
Returns the last n elements from the list.
orderBy
(VerifiableDomainOrder
)
Ordering options for verifiable domains returned.
enterpriseServerInstallations
(EnterpriseServerInstallationConnection!
)
Enterprise Server installations owned by the enterprise.
Arguments for enterpriseServerInstallations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
connectedOnly
(Boolean
)
Whether or not to only return installations discovered via GitHub Connect.
The default value is false
.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(EnterpriseServerInstallationOrder
)
Ordering options for Enterprise Server installations returned.
failedInvitations
(EnterpriseFailedInvitationConnection!
)
A list of failed invitations in the enterprise.
Arguments for failedInvitations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
query
(String
)
The search string to look for.
ipAllowListEnabledSetting
(IpAllowListEnabledSettingValue!
)
The setting value for whether the enterprise has an IP allow list enabled.
ipAllowListEntries
(IpAllowListEntryConnection!
)
The IP addresses that are allowed to access resources owned by the enterprise. Visible to enterprise owners or enterprise owners' personal access tokens (classic) with admin:enterprise scope.
Arguments for ipAllowListEntries
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IpAllowListEntryOrder
)
Ordering options for IP allow list entries returned.
ipAllowListForInstalledAppsEnabledSetting
(IpAllowListForInstalledAppsEnabledSettingValue!
)
The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.
isUpdatingDefaultRepositoryPermission
(Boolean!
)
Whether or not the base repository permission is currently being updated.
isUpdatingTwoFactorRequirement
(Boolean!
)
Whether the two-factor authentication requirement is currently being enforced.
membersCanChangeRepositoryVisibilitySetting
(EnterpriseEnabledDisabledSettingValue!
)
The setting value for whether organization members with admin permissions on a repository can change repository visibility.
membersCanChangeRepositoryVisibilitySettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided can change repository visibility setting value.
Arguments for membersCanChangeRepositoryVisibilitySettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(Boolean!
)
The setting value to find organizations for.
membersCanCreateInternalRepositoriesSetting
(Boolean
)
The setting value for whether members of organizations in the enterprise can create internal repositories.
membersCanCreatePrivateRepositoriesSetting
(Boolean
)
The setting value for whether members of organizations in the enterprise can create private repositories.
membersCanCreatePublicRepositoriesSetting
(Boolean
)
The setting value for whether members of organizations in the enterprise can create public repositories.
membersCanCreateRepositoriesSetting
(EnterpriseMembersCanCreateRepositoriesSettingValue
)
The setting value for whether members of organizations in the enterprise can create repositories.
membersCanCreateRepositoriesSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided repository creation setting value.
Arguments for membersCanCreateRepositoriesSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(OrganizationMembersCanCreateRepositoriesSettingValue!
)
The setting to find organizations for.
membersCanDeleteIssuesSetting
(EnterpriseEnabledDisabledSettingValue!
)
The setting value for whether members with admin permissions for repositories can delete issues.
membersCanDeleteIssuesSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided members can delete issues setting value.
Arguments for membersCanDeleteIssuesSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(Boolean!
)
The setting value to find organizations for.
membersCanDeleteRepositoriesSetting
(EnterpriseEnabledDisabledSettingValue!
)
The setting value for whether members with admin permissions for repositories can delete or transfer repositories.
membersCanDeleteRepositoriesSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided members can delete repositories setting value.
Arguments for membersCanDeleteRepositoriesSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(Boolean!
)
The setting value to find organizations for.
membersCanInviteCollaboratorsSetting
(EnterpriseEnabledDisabledSettingValue!
)
The setting value for whether members of organizations in the enterprise can invite outside collaborators.
membersCanInviteCollaboratorsSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided members can invite collaborators setting value.
Arguments for membersCanInviteCollaboratorsSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(Boolean!
)
The setting value to find organizations for.
membersCanMakePurchasesSetting
(EnterpriseMembersCanMakePurchasesSettingValue!
)
Indicates whether members of this enterprise's organizations can purchase additional services for those organizations.
membersCanUpdateProtectedBranchesSetting
(EnterpriseEnabledDisabledSettingValue!
)
The setting value for whether members with admin permissions for repositories can update protected branches.
membersCanUpdateProtectedBranchesSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided members can update protected branches setting value.
Arguments for membersCanUpdateProtectedBranchesSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(Boolean!
)
The setting value to find organizations for.
membersCanViewDependencyInsightsSetting
(EnterpriseEnabledDisabledSettingValue!
)
The setting value for whether members can view dependency insights.
membersCanViewDependencyInsightsSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided members can view dependency insights setting value.
Arguments for membersCanViewDependencyInsightsSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(Boolean!
)
The setting value to find organizations for.
notificationDeliveryRestrictionEnabledSetting
(NotificationRestrictionSettingValue!
)
Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.
oidcProvider
(OIDCProvider
)
The OIDC Identity Provider for the enterprise.
organizationProjectsSetting
(EnterpriseEnabledDisabledSettingValue!
)
The setting value for whether organization projects are enabled for organizations in this enterprise.
organizationProjectsSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided organization projects setting value.
Arguments for organizationProjectsSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(Boolean!
)
The setting value to find organizations for.
outsideCollaborators
(EnterpriseOutsideCollaboratorConnection!
)
A list of outside collaborators across the repositories in the enterprise.
Arguments for outsideCollaborators
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
hasTwoFactorEnabled
(Boolean
)
Only return outside collaborators with this two-factor authentication status.
Upcoming Change on 2025-04-01 UTC Description: hasTwoFactorEnabled
will be removed. Use two_factor_method_security
instead. Reason: has_two_factor_enabled
will be removed.
last
(Int
)
Returns the last n elements from the list.
login
(String
)
The login of one specific outside collaborator.
orderBy
(EnterpriseMemberOrder
)
Ordering options for outside collaborators returned from the connection.
organizationLogins
([String!]
)
Only return outside collaborators within the organizations with these logins.
query
(String
)
The search string to look for.
twoFactorMethodSecurity
(TwoFactorCredentialSecurityType
)
Only return outside collaborators with this type of two-factor authentication method.
visibility
(RepositoryVisibility
)
Only return outside collaborators on repositories with this visibility.
pendingAdminInvitations
(EnterpriseAdministratorInvitationConnection!
)
A list of pending administrator invitations for the enterprise.
Arguments for pendingAdminInvitations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(EnterpriseAdministratorInvitationOrder
)
Ordering options for pending enterprise administrator invitations returned from the connection.
query
(String
)
The search string to look for.
role
(EnterpriseAdministratorRole
)
The role to filter by.
pendingCollaboratorInvitations
(RepositoryInvitationConnection!
)
A list of pending collaborator invitations across the repositories in the enterprise.
Arguments for pendingCollaboratorInvitations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryInvitationOrder
)
Ordering options for pending repository collaborator invitations returned from the connection.
query
(String
)
The search string to look for.
pendingMemberInvitations
(EnterprisePendingMemberInvitationConnection!
)
A list of pending member invitations for organizations in the enterprise.
Arguments for pendingMemberInvitations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
invitationSource
(OrganizationInvitationSource
)
Only return invitations matching this invitation source.
last
(Int
)
Returns the last n elements from the list.
organizationLogins
([String!]
)
Only return invitations within the organizations with these logins.
query
(String
)
The search string to look for.
pendingUnaffiliatedMemberInvitations
(EnterpriseMemberInvitationConnection!
)
A list of pending unaffiliated member invitations for the enterprise.
Arguments for pendingUnaffiliatedMemberInvitations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(EnterpriseMemberInvitationOrder
)
Ordering options for pending enterprise member invitations returned from the connection.
query
(String
)
The search string to look for.
repositoryDeployKeySetting
(EnterpriseEnabledDisabledSettingValue!
)
The setting value for whether deploy keys are enabled for repositories in organizations in this enterprise.
repositoryDeployKeySettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided deploy keys setting value.
Arguments for repositoryDeployKeySettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(Boolean!
)
The setting value to find organizations for.
repositoryProjectsSetting
(EnterpriseEnabledDisabledSettingValue!
)
The setting value for whether repository projects are enabled in this enterprise.
repositoryProjectsSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided repository projects setting value.
Arguments for repositoryProjectsSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(Boolean!
)
The setting value to find organizations for.
samlIdentityProvider
(EnterpriseIdentityProvider
)
The SAML Identity Provider for the enterprise.
samlIdentityProviderSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the SAML single sign-on setting value.
Arguments for samlIdentityProviderSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(IdentityProviderConfigurationState!
)
The setting value to find organizations for.
supportEntitlements
(EnterpriseMemberConnection!
)
A list of members with a support entitlement.
Arguments for supportEntitlements
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(EnterpriseMemberOrder
)
Ordering options for support entitlement users returned from the connection.
teamDiscussionsSetting
(EnterpriseEnabledDisabledSettingValue!
)
The setting value for whether team discussions are enabled for organizations in this enterprise.
teamDiscussionsSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the provided team discussions setting value.
Arguments for teamDiscussionsSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(Boolean!
)
The setting value to find organizations for.
twoFactorDisallowedMethodsSetting
(EnterpriseDisallowedMethodsSettingValue!
)
The setting value for what methods of two-factor authentication the enterprise prevents its users from having.
twoFactorRequiredSetting
(EnterpriseEnabledSettingValue!
)
The setting value for whether the enterprise requires two-factor authentication for its organizations and users.
twoFactorRequiredSettingOrganizations
(OrganizationConnection!
)
A list of enterprise organizations configured with the two-factor authentication setting value.
Arguments for twoFactorRequiredSettingOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations with this setting.
value
(Boolean!
)
The setting value to find organizations for.
A subset of repository information queryable from an enterprise.
EnterpriseRepositoryInfo
Implements
Fields for EnterpriseRepositoryInfo
Name Description
id
(ID!
)
The Node ID of the EnterpriseRepositoryInfo object.
isPrivate
(Boolean!
)
Identifies if the repository is private or internal.
name
(String!
)
The repository's name.
nameWithOwner
(String!
)
The repository's name with owner.
EnterpriseServerInstallationAn Enterprise Server installation.
EnterpriseServerInstallation
Implements
Fields for EnterpriseServerInstallation
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
customerName
(String!
)
The customer name to which the Enterprise Server installation belongs.
hostName
(String!
)
The host name of the Enterprise Server installation.
id
(ID!
)
The Node ID of the EnterpriseServerInstallation object.
isConnected
(Boolean!
)
Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
userAccounts
(EnterpriseServerUserAccountConnection!
)
User accounts on this Enterprise Server installation.
Arguments for userAccounts
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(EnterpriseServerUserAccountOrder
)
Ordering options for Enterprise Server user accounts returned from the connection.
userAccountsUploads
(EnterpriseServerUserAccountsUploadConnection!
)
User accounts uploads for the Enterprise Server installation.
Arguments for userAccountsUploads
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(EnterpriseServerUserAccountsUploadOrder
)
Ordering options for Enterprise Server user accounts uploads returned from the connection.
A user account on an Enterprise Server installation.
EnterpriseServerUserAccount
Implements
Fields for EnterpriseServerUserAccount
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
emails
(EnterpriseServerUserAccountEmailConnection!
)
User emails belonging to this user account.
Arguments for emails
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(EnterpriseServerUserAccountEmailOrder
)
Ordering options for Enterprise Server user account emails returned from the connection.
enterpriseServerInstallation
(EnterpriseServerInstallation!
)
The Enterprise Server installation on which this user account exists.
id
(ID!
)
The Node ID of the EnterpriseServerUserAccount object.
isSiteAdmin
(Boolean!
)
Whether the user account is a site administrator on the Enterprise Server installation.
login
(String!
)
The login of the user account on the Enterprise Server installation.
profileName
(String
)
The profile name of the user account on the Enterprise Server installation.
remoteCreatedAt
(DateTime!
)
The date and time when the user account was created on the Enterprise Server installation.
remoteUserId
(Int!
)
The ID of the user account on the Enterprise Server installation.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
EnterpriseServerUserAccountEmailAn email belonging to a user account on an Enterprise Server installation.
EnterpriseServerUserAccountEmail
Implements
Fields for EnterpriseServerUserAccountEmail
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
email
(String!
)
The email address.
id
(ID!
)
The Node ID of the EnterpriseServerUserAccountEmail object.
isPrimary
(Boolean!
)
Indicates whether this is the primary email of the associated user account.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
userAccount
(EnterpriseServerUserAccount!
)
The user account to which the email belongs.
EnterpriseServerUserAccountsUploadA user accounts upload from an Enterprise Server installation.
EnterpriseServerUserAccountsUpload
Implements
Fields for EnterpriseServerUserAccountsUpload
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
enterprise
(Enterprise!
)
The enterprise to which this upload belongs.
enterpriseServerInstallation
(EnterpriseServerInstallation!
)
The Enterprise Server installation for which this upload was generated.
id
(ID!
)
The Node ID of the EnterpriseServerUserAccountsUpload object.
name
(String!
)
The name of the file uploaded.
syncState
(EnterpriseServerUserAccountsUploadSyncState!
)
The synchronization state of the upload.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
EnterpriseUserAccountAn account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.
EnterpriseUserAccount
Implements
Fields for EnterpriseUserAccount
Name Description
avatarUrl
(URI!
)
A URL pointing to the enterprise user account's public avatar.
Arguments for avatarUrl
size
(Int
)
The size of the resulting square image.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
enterprise
(Enterprise!
)
The enterprise in which this user account exists.
enterpriseInstallations
(EnterpriseServerInstallationMembershipConnection!
)
A list of Enterprise Server installations this user is a member of.
Arguments for enterpriseInstallations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(EnterpriseServerInstallationOrder
)
Ordering options for installations returned from the connection.
query
(String
)
The search string to look for.
role
(EnterpriseUserAccountMembershipRole
)
The role of the user in the installation.
id
(ID!
)
The Node ID of the EnterpriseUserAccount object.
login
(String!
)
An identifier for the enterprise user account, a login or email address.
name
(String
)
The name of the enterprise user account.
organizations
(EnterpriseOrganizationMembershipConnection!
)
A list of enterprise organizations this user is a member of.
Arguments for organizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for organizations returned from the connection.
query
(String
)
The search string to look for.
role
(EnterpriseUserAccountMembershipRole
)
The role of the user in the enterprise organization.
resourcePath
(URI!
)
The HTTP path for this user.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this user.
user
(User
)
The user within the enterprise.
EnvironmentAn environment.
Environment
Implements
Fields for Environment
Name Description
databaseId
(Int
)
Identifies the primary key from the database.
id
(ID!
)
The Node ID of the Environment object.
isPinned
(Boolean
)
Indicates whether or not this environment is currently pinned to the repository.
latestCompletedDeployment
(Deployment
)
The latest completed deployment with status success, failure, or error if it exists.
name
(String!
)
The name of the environment.
pinnedPosition
(Int
)
The position of the environment if it is pinned, null if it is not pinned.
protectionRules
(DeploymentProtectionRuleConnection!
)
The protection rules defined for this environment.
Arguments for protectionRules
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
An edge in a connection.
Fields forEnvironmentEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Environment
)
The item at the end of the edge.
ExternalIdentityAn external identity provisioned by SAML SSO or SCIM. If SAML is configured on the organization, the external identity is visible to (1) organization owners, (2) organization owners' personal access tokens (classic) with read:org or admin:org scope, (3) GitHub App with an installation token with read or write access to members. If SAML is configured on the enterprise, the external identity is visible to (1) enterprise owners, (2) enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.
ExternalIdentity
Implements
Fields for ExternalIdentity
Name Description
guid
(String!
)
The GUID for this identity.
id
(ID!
)
The Node ID of the ExternalIdentity object.
organizationInvitation
(OrganizationInvitation
)
Organization invitation for this SCIM-provisioned external identity.
samlIdentity
(ExternalIdentitySamlAttributes
)
SAML Identity attributes.
scimIdentity
(ExternalIdentityScimAttributes
)
SCIM Identity attributes.
user
(User
)
User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.
ExternalIdentityAttributeAn attribute for the External Identity attributes collection.
Fields forExternalIdentityAttribute
Name Description
metadata
(String
)
The attribute metadata as JSON.
name
(String!
)
The attribute name.
value
(String!
)
The attribute value.
ExternalIdentityScimAttributesSCIM attributes for the External Identity.
Fields forExternalIdentityScimAttributes
Name Description
emails
([UserEmailMetadata!]
)
The emails associated with the SCIM identity.
familyName
(String
)
Family name of the SCIM identity.
givenName
(String
)
Given name of the SCIM identity.
groups
([String!]
)
The groups linked to this identity in IDP.
username
(String
)
The userName of the SCIM identity.
FileExtensionRestrictionParametersPrevent commits that include files with specified file extensions from being pushed to the commit graph.
Fields forFileExtensionRestrictionParameters
Name Description
restrictedFileExtensions
([String!]!
)
The file extensions that are restricted from being pushed to the commit graph.
FilePathRestrictionParametersPrevent commits that include changes in specified file and folder paths from being pushed to the commit graph. This includes absolute paths that contain file names.
Fields forFilePathRestrictionParameters
Name Description
restrictedFilePaths
([String!]!
)
The file paths that are restricted from being pushed to the commit graph.
FollowerConnectionThe connection type for User.
Fields forFollowerConnection
Name Description
edges
([UserEdge]
)
A list of edges.
nodes
([User]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
FollowingConnectionThe connection type for User.
Fields forFollowingConnection
Name Description
edges
([UserEdge]
)
A list of edges.
nodes
([User]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
FundingLinkA funding platform link for a repository.
Fields forFundingLink
Name Description
platform
(FundingPlatform!
)
The funding platform this link is for.
url
(URI!
)
The configured URL for this funding link.
GenericHovercardContextA generic hovercard context with a message and icon.
GenericHovercardContext
Implements
Fields for GenericHovercardContext
Name Description
message
(String!
)
A string describing this context.
octicon
(String!
)
An octicon to accompany this context.
GistA Gist.
Gist
Implements
Fields for Gist
Name Description
comments
(GistCommentConnection!
)
A list of comments associated with the gist.
Arguments for comments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
description
(String
)
The gist description.
files
([GistFile]
)
The files in this gist.
Arguments for files
limit
(Int
)
The maximum number of files to return.
The default value is 10
.
oid
(GitObjectID
)
The oid of the files to return.
forks
(GistConnection!
)
A list of forks associated with the gist.
Arguments for forks
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(GistOrder
)
Ordering options for gists returned from the connection.
id
(ID!
)
The Node ID of the Gist object.
isFork
(Boolean!
)
Identifies if the gist is a fork.
isPublic
(Boolean!
)
Whether the gist is public or not.
name
(String!
)
The gist name.
owner
(RepositoryOwner
)
The gist owner.
pushedAt
(DateTime
)
Identifies when the gist was last pushed to.
resourcePath
(URI!
)
The HTML path to this resource.
stargazerCount
(Int!
)
Returns a count of how many stargazers there are on this object.
stargazers
(StargazerConnection!
)
A list of users who have starred this starrable.
Arguments for stargazers
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(StarOrder
)
Order for connection.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this Gist.
viewerHasStarred
(Boolean!
)
Returns a boolean indicating whether the viewing user has starred this starrable.
Represents a comment on an Gist.
GistComment
Implements
Fields for GistComment
Name Description
author
(Actor
)
The actor who authored the comment.
authorAssociation
(CommentAuthorAssociation!
)
Author's association with the gist.
body
(String!
)
Identifies the comment body.
bodyHTML
(HTML!
)
The body rendered to HTML.
bodyText
(String!
)
The body rendered to text.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
createdViaEmail
(Boolean!
)
Check if this comment was created via an email reply.
databaseId
(Int
)
Identifies the primary key from the database.
editor
(Actor
)
The actor who edited the comment.
gist
(Gist!
)
The associated gist.
id
(ID!
)
The Node ID of the GistComment object.
includesCreatedEdit
(Boolean!
)
Check if this comment was edited and includes an edit with the creation data.
isMinimized
(Boolean!
)
Returns whether or not a comment has been minimized.
lastEditedAt
(DateTime
)
The moment the editor made the last edit.
minimizedReason
(String
)
Returns why the comment was minimized. One of abuse
, off-topic
, outdated
, resolved
, duplicate
and spam
. Note that the case and formatting of these values differs from the inputs to the MinimizeComment
mutation.
publishedAt
(DateTime
)
Identifies when the comment was published at.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
userContentEdits
(UserContentEditConnection
)
A list of edits to this content.
Arguments for userContentEdits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
viewerCanDelete
(Boolean!
)
Check if the current viewer can delete this object.
viewerCanMinimize
(Boolean!
)
Check if the current viewer can minimize this object.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
viewerCannotUpdateReasons
([CommentCannotUpdateReason!]!
)
Reasons why the current viewer can not update this comment.
viewerDidAuthor
(Boolean!
)
Did the viewer author this comment.
The connection type for GistComment.
Fields forGistCommentConnection
Name Description
edges
([GistCommentEdge]
)
A list of edges.
nodes
([GistComment]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
An edge in a connection.
Fields forGistCommentEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(GistComment
)
The item at the end of the edge.
GistConnectionThe connection type for Gist.
Fields forGistConnection
Name Description
edges
([GistEdge]
)
A list of edges.
nodes
([Gist]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
GistEdgeAn edge in a connection.
Fields forGistEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Gist
)
The item at the end of the edge.
GistFileA file in a gist.
Fields forGistFile
Name Description
encodedName
(String
)
The file name encoded to remove characters that are invalid in URL paths.
encoding
(String
)
The gist file encoding.
extension
(String
)
The file extension from the file name.
isImage
(Boolean!
)
Indicates if this file is an image.
isTruncated
(Boolean!
)
Whether the file's contents were truncated.
language
(Language
)
The programming language this file is written in.
name
(String
)
The gist file name.
size
(Int
)
The gist file size in bytes.
text
(String
)
UTF8 text data or null if the file is binary.
Arguments for text
truncate
(Int
)
Optionally truncate the returned file to this length.
Represents an actor in a Git commit (ie. an author or committer).
Fields forGitActor
Name Description
avatarUrl
(URI!
)
A URL pointing to the author's public avatar.
Arguments for avatarUrl
size
(Int
)
The size of the resulting square image.
date
(GitTimestamp
)
The timestamp of the Git action (authoring or committing).
email
(String
)
The email in the Git commit.
name
(String
)
The name in the Git commit.
user
(User
)
The GitHub user corresponding to the email field. Null if no such user exists.
GitActorConnectionThe connection type for GitActor.
Fields forGitActorConnection
Name Description
edges
([GitActorEdge]
)
A list of edges.
nodes
([GitActor]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
GitActorEdgeAn edge in a connection.
Fields forGitActorEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(GitActor
)
The item at the end of the edge.
Represents information about the GitHub instance.
Fields forGitHubMetadata
Name Description
gitHubServicesSha
(GitObjectID!
)
Returns a String that's a SHA of github-services
.
gitIpAddresses
([String!]
)
IP addresses that users connect to for git operations.
githubEnterpriseImporterIpAddresses
([String!]
)
IP addresses that GitHub Enterprise Importer uses for outbound connections.
hookIpAddresses
([String!]
)
IP addresses that service hooks are sent from.
importerIpAddresses
([String!]
)
IP addresses that the importer connects from.
isPasswordAuthenticationVerifiable
(Boolean!
)
Whether or not users are verified.
pagesIpAddresses
([String!]
)
IP addresses for GitHub Pages' A records.
GpgSignatureRepresents a GPG signature on a Commit or Tag.
GpgSignature
Implements
Fields for GpgSignature
Name Description
email
(String!
)
Email used to sign this object.
isValid
(Boolean!
)
True if the signature is valid and verified by GitHub.
keyId
(String
)
Hex-encoded ID of the key that signed this object.
payload
(String!
)
Payload for GPG signing object. Raw ODB object without the signature header.
signature
(String!
)
ASCII-armored signature header from object.
signer
(User
)
GitHub user corresponding to the email signing this commit.
state
(GitSignatureState!
)
The state of this signature. VALID
if signature is valid and verified by GitHub, otherwise represents reason why signature is considered invalid.
verifiedAt
(DateTime
)
The date the signature was verified, if valid.
wasSignedByGitHub
(Boolean!
)
True if the signature was made with GitHub's signing key.
HeadRefDeletedEventRepresents ahead_ref_deleted
event on a given pull request.
HeadRefDeletedEvent
Implements
Fields for HeadRefDeletedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
headRef
(Ref
)
Identifies the Ref associated with the head_ref_deleted
event.
headRefName
(String!
)
Identifies the name of the Ref associated with the head_ref_deleted
event.
id
(ID!
)
The Node ID of the HeadRefDeletedEvent object.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
HeadRefForcePushedEventRepresents ahead_ref_force_pushed
event on a given pull request.
HeadRefForcePushedEvent
Implements
Fields for HeadRefForcePushedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
afterCommit
(Commit
)
Identifies the after commit SHA for thehead_ref_force_pushed
event.
beforeCommit
(Commit
)
Identifies the before commit SHA for thehead_ref_force_pushed
event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the HeadRefForcePushedEvent object.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
ref
(Ref
)
Identifies the fully qualified ref name for thehead_ref_force_pushed
event.
Represents ahead_ref_restored
event on a given pull request.
HeadRefRestoredEvent
Implements
Fields for HeadRefRestoredEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the HeadRefRestoredEvent object.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
HovercardDetail needed to display a hovercard for a user.
IpAllowListEntryAn IP address or range of addresses that is allowed to access an owner's resources.
IpAllowListEntry
Implements
Fields for IpAllowListEntry
Name Description
allowListValue
(String!
)
A single IP address or range of IP addresses in CIDR notation.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the IpAllowListEntry object.
isActive
(Boolean!
)
Whether the entry is currently active.
name
(String
)
The name of the IP allow list entry.
owner
(IpAllowListOwner!
)
The owner of the IP allow list entry.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
IssueAn Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.
Issue
Implements
Assignable
Closable
Comment
Deletable
Labelable
Lockable
Node
ProjectV2Owner
Reactable
RepositoryNode
Subscribable
SubscribableThread
UniformResourceLocatable
Updatable
UpdatableComment
Issue
Name Description
activeLockReason
(LockReason
)
Reason that the conversation was locked.
assignedActors
(AssigneeConnection!
)
A list of actors assigned to this object.
Arguments for assignedActors
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
assignees
(UserConnection!
)
A list of Users assigned to this object.
Arguments for assignees
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
author
(Actor
)
The actor who authored the comment.
authorAssociation
(CommentAuthorAssociation!
)
Author's association with the subject of the comment.
body
(String!
)
Identifies the body of the issue.
bodyHTML
(HTML!
)
The body rendered to HTML.
bodyResourcePath
(URI!
)
The http path for this issue body.
bodyText
(String!
)
Identifies the body of the issue rendered to text.
bodyUrl
(URI!
)
The http URL for this issue body.
closed
(Boolean!
)
Indicates if the object is closed (definition of closed may depend on type).
closedAt
(DateTime
)
Identifies the date and time when the object was closed.
closedByPullRequestsReferences
(PullRequestConnection
)
List of open pull requests referenced from this issue.
Arguments for closedByPullRequestsReferences
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
includeClosedPrs
(Boolean
)
Include closed PRs in results.
The default value is false
.
last
(Int
)
Returns the last n elements from the list.
orderByState
(Boolean
)
Return results ordered by state.
The default value is false
.
userLinkedOnly
(Boolean
)
Return only manually linked PRs.
The default value is false
.
comments
(IssueCommentConnection!
)
A list of comments associated with the Issue.
Arguments for comments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueCommentOrder
)
Ordering options for issue comments returned from the connection.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
createdViaEmail
(Boolean!
)
Check if this comment was created via an email reply.
databaseId
(Int
)
Identifies the primary key from the database.
duplicateOf
(Issue
)
A reference to the original issue that this issue has been marked as a duplicate of.
editor
(Actor
)
The actor who edited the comment.
fullDatabaseId
(BigInt
)
Identifies the primary key from the database as a BigInt.
hovercard
(Hovercard!
)
The hovercard information for this issue.
Arguments for hovercard
includeNotificationContexts
(Boolean
)
Whether or not to include notification contexts.
The default value is true
.
id
(ID!
)
The Node ID of the Issue object.
includesCreatedEdit
(Boolean!
)
Check if this comment was edited and includes an edit with the creation data.
isPinned
(Boolean
)
Indicates whether or not this issue is currently pinned to the repository issues list.
isReadByViewer
(Boolean
)
Is this issue read by the viewer.
issueType
(IssueType
)
The issue type for this Issue.
labels
(LabelConnection
)
A list of labels associated with the object.
Arguments for labels
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(LabelOrder
)
Ordering options for labels returned from the connection.
lastEditedAt
(DateTime
)
The moment the editor made the last edit.
linkedBranches
(LinkedBranchConnection!
)
Branches linked to this issue.
Arguments for linkedBranches
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
locked
(Boolean!
)
true
if the object is locked.
milestone
(Milestone
)
Identifies the milestone associated with the issue.
number
(Int!
)
Identifies the issue number.
parent
(Issue
)
The parent entity of the issue.
participants
(UserConnection!
)
A list of Users that are participating in the Issue conversation.
Arguments for participants
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
projectCards
(ProjectCardConnection!
)
List of project cards associated with this issue.
Warning
projectCards
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
Arguments for projectCards
after
(String
)
Returns the elements in the list that come after the specified cursor.
archivedStates
([ProjectCardArchivedState]
)
A list of archived states to filter the cards by.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
projectItems
(ProjectV2ItemConnection!
)
List of project items associated with this issue.
Arguments for projectItems
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
includeArchived
(Boolean
)
Include archived items.
The default value is true
.
last
(Int
)
Returns the last n elements from the list.
projectV2
(ProjectV2
)
Find a project by number.
Arguments for projectV2
number
(Int!
)
The project number.
projectsV2
(ProjectV2Connection!
)
A list of projects under the owner.
Arguments for projectsV2
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
minPermissionLevel
(ProjectV2PermissionLevel
)
Filter projects based on user role.
The default value is READ
.
orderBy
(ProjectV2Order
)
How to order the returned projects.
query
(String
)
A project to search for under the owner.
publishedAt
(DateTime
)
Identifies when the comment was published at.
reactionGroups
([ReactionGroup!]
)
A list of reactions grouped by content left on the subject.
reactions
(ReactionConnection!
)
A list of Reactions left on the Issue.
Arguments for reactions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
content
(ReactionContent
)
Allows filtering Reactions by emoji.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ReactionOrder
)
Allows specifying the order in which reactions are returned.
repository
(Repository!
)
The repository associated with this node.
resourcePath
(URI!
)
The HTTP path for this issue.
state
(IssueState!
)
Identifies the state of the issue.
stateReason
(IssueStateReason
)
Identifies the reason for the issue state.
Warning
stateReason
is deprecated.
The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.
Arguments for stateReason
enableDuplicate
(Boolean
)
Whether or not to return state reason for duplicates.
The default value is false
.
subIssues
(IssueConnection!
)
A list of sub-issues associated with the Issue.
Arguments for subIssues
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
subIssuesSummary
(SubIssuesSummary!
)
Summary of the state of an issue's sub-issues.
suggestedActors
(AssigneeConnection!
)
A list of suggested actors to assign to this object.
Arguments for suggestedActors
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
query
(String
)
If provided, searches users by login or profile name.
timeline
(IssueTimelineConnection!
)
A list of events, comments, commits, etc. associated with the issue.
Warning
timeline
is deprecated.
timeline
will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.
Arguments for timeline
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
since
(DateTime
)
Allows filtering timeline events by a since
timestamp.
timelineItems
(IssueTimelineItemsConnection!
)
A list of events, comments, commits, etc. associated with the issue.
Arguments for timelineItems
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
itemTypes
([IssueTimelineItemsItemType!]
)
Filter timeline items by type.
last
(Int
)
Returns the last n elements from the list.
since
(DateTime
)
Filter timeline items by a since
timestamp.
skip
(Int
)
Skips the first n elements in the list.
title
(String!
)
Identifies the issue title.
titleHTML
(String!
)
Identifies the issue title rendered to HTML.
trackedInIssues
(IssueConnection!
)
A list of issues that track this issue.
Arguments for trackedInIssues
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
trackedIssues
(IssueConnection!
)
A list of issues tracked inside the current issue.
Arguments for trackedIssues
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
trackedIssuesCount
(Int!
)
The number of tracked issues for this issue.
Arguments for trackedIssuesCount
states
([TrackedIssueStates]
)
Limit the count to tracked issues with the specified states.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this issue.
userContentEdits
(UserContentEditConnection
)
A list of edits to this content.
Arguments for userContentEdits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
viewerCanClose
(Boolean!
)
Indicates if the object can be closed by the viewer.
viewerCanDelete
(Boolean!
)
Check if the current viewer can delete this object.
viewerCanLabel
(Boolean!
)
Indicates if the viewer can edit labels for this object.
viewerCanReact
(Boolean!
)
Can user react to this subject.
viewerCanReopen
(Boolean!
)
Indicates if the object can be reopened by the viewer.
viewerCanSubscribe
(Boolean!
)
Check if the viewer is able to change their subscription status for the repository.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
viewerCannotUpdateReasons
([CommentCannotUpdateReason!]!
)
Reasons why the current viewer can not update this comment.
viewerDidAuthor
(Boolean!
)
Did the viewer author this comment.
viewerSubscription
(SubscriptionState
)
Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
viewerThreadSubscriptionFormAction
(ThreadSubscriptionFormAction
)
Identifies the viewer's thread subscription form action.
viewerThreadSubscriptionStatus
(ThreadSubscriptionState
)
Identifies the viewer's thread subscription status.
Represents a comment on an Issue.
IssueComment
Implements
Fields for IssueComment
Name Description
author
(Actor
)
The actor who authored the comment.
authorAssociation
(CommentAuthorAssociation!
)
Author's association with the subject of the comment.
body
(String!
)
The body as Markdown.
bodyHTML
(HTML!
)
The body rendered to HTML.
bodyText
(String!
)
The body rendered to text.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
createdViaEmail
(Boolean!
)
Check if this comment was created via an email reply.
databaseId
(Int
)
Identifies the primary key from the database.
editor
(Actor
)
The actor who edited the comment.
fullDatabaseId
(BigInt
)
Identifies the primary key from the database as a BigInt.
id
(ID!
)
The Node ID of the IssueComment object.
includesCreatedEdit
(Boolean!
)
Check if this comment was edited and includes an edit with the creation data.
isMinimized
(Boolean!
)
Returns whether or not a comment has been minimized.
issue
(Issue!
)
Identifies the issue associated with the comment.
lastEditedAt
(DateTime
)
The moment the editor made the last edit.
minimizedReason
(String
)
Returns why the comment was minimized. One of abuse
, off-topic
, outdated
, resolved
, duplicate
and spam
. Note that the case and formatting of these values differs from the inputs to the MinimizeComment
mutation.
publishedAt
(DateTime
)
Identifies when the comment was published at.
pullRequest
(PullRequest
)
Returns the pull request associated with the comment, if this comment was made on a pull request.
reactionGroups
([ReactionGroup!]
)
A list of reactions grouped by content left on the subject.
reactions
(ReactionConnection!
)
A list of Reactions left on the Issue.
Arguments for reactions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
content
(ReactionContent
)
Allows filtering Reactions by emoji.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ReactionOrder
)
Allows specifying the order in which reactions are returned.
repository
(Repository!
)
The repository associated with this node.
resourcePath
(URI!
)
The HTTP path for this issue comment.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this issue comment.
userContentEdits
(UserContentEditConnection
)
A list of edits to this content.
Arguments for userContentEdits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
viewerCanDelete
(Boolean!
)
Check if the current viewer can delete this object.
viewerCanMinimize
(Boolean!
)
Check if the current viewer can minimize this object.
viewerCanReact
(Boolean!
)
Can user react to this subject.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
viewerCannotUpdateReasons
([CommentCannotUpdateReason!]!
)
Reasons why the current viewer can not update this comment.
viewerDidAuthor
(Boolean!
)
Did the viewer author this comment.
The connection type for IssueComment.
Fields forIssueCommentConnection
Name Description
edges
([IssueCommentEdge]
)
A list of edges.
nodes
([IssueComment]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
An edge in a connection.
Fields forIssueCommentEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(IssueComment
)
The item at the end of the edge.
IssueConnectionThe connection type for Issue.
Fields forIssueConnection
Name Description
edges
([IssueEdge]
)
A list of edges.
nodes
([Issue]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
IssueContributionsByRepositoryThis aggregates issues opened by a user within one repository.
Fields forIssueContributionsByRepository
Name Description
contributions
(CreatedIssueContributionConnection!
)
The issue contributions.
Arguments for contributions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ContributionOrder
)
Ordering options for contributions returned from the connection.
repository
(Repository!
)
The repository in which the issues were opened.
IssueEdgeAn edge in a connection.
Fields forIssueEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Issue
)
The item at the end of the edge.
IssueTemplateA repository issue template.
Fields forIssueTemplate
Name Description
about
(String
)
The template purpose.
assignees
(UserConnection!
)
The suggested assignees.
Arguments for assignees
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
body
(String
)
The suggested issue body.
filename
(String!
)
The template filename.
labels
(LabelConnection
)
The suggested issue labels.
Arguments for labels
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(LabelOrder
)
Ordering options for labels returned from the connection.
name
(String!
)
The template name.
title
(String
)
The suggested issue title.
type
(IssueType
)
The suggested issue type.
IssueTimelineItemsConnectionThe connection type for IssueTimelineItems.
Fields forIssueTimelineItemsConnection
Name Description
edges
([IssueTimelineItemsEdge]
)
A list of edges.
filteredCount
(Int!
)
Identifies the count of items after applying before
and after
filters.
nodes
([IssueTimelineItems]
)
A list of nodes.
pageCount
(Int!
)
Identifies the count of items after applying before
/after
filters and first
/last
/skip
slicing.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
updatedAt
(DateTime!
)
Identifies the date and time when the timeline was last updated.
IssueTypeRepresents the type of Issue.
IssueType
Implements
Fields for IssueType
Name Description
color
(IssueTypeColor!
)
The issue type's color.
description
(String
)
The issue type's description.
id
(ID!
)
The Node ID of the IssueType object.
isEnabled
(Boolean!
)
The issue type's enabled state.
isPrivate
(Boolean!
)
Whether the issue type is publicly visible.
Warning
isPrivate
is deprecated.
Private issue types are being deprecated and can no longer be created. Removal on 2025-04-01 UTC.
issues
(IssueConnection!
)
The issues with this issue type in the given repository.
Arguments for issues
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
filterBy
(IssueFilters
)
Filtering options for issues returned from the connection.
first
(Int
)
Returns the first n elements from the list.
labels
([String!]
)
A list of label names to filter the pull requests by.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueOrder
)
Ordering options for issues returned from the connection.
repositoryId
(ID!
)
Target repository to load the issues from.
states
([IssueState!]
)
A list of states to filter the issues by.
name
(String!
)
The issue type's name.
IssueTypeAddedEventRepresents aissue_type_added
event on a given issue.
IssueTypeAddedEvent
Implements
Fields for IssueTypeAddedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the IssueTypeAddedEvent object.
issueType
(IssueType
)
The issue type added.
IssueTypeChangedEventRepresents aissue_type_changed
event on a given issue.
IssueTypeChangedEvent
Implements
Fields for IssueTypeChangedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the IssueTypeChangedEvent object.
issueType
(IssueType
)
The issue type added.
prevIssueType
(IssueType
)
The issue type removed.
IssueTypeConnectionThe connection type for IssueType.
Fields forIssueTypeConnection
Name Description
edges
([IssueTypeEdge]
)
A list of edges.
nodes
([IssueType]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
IssueTypeEdgeAn edge in a connection.
Fields forIssueTypeEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(IssueType
)
The item at the end of the edge.
IssueTypeRemovedEventRepresents aissue_type_removed
event on a given issue.
IssueTypeRemovedEvent
Implements
Fields for IssueTypeRemovedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the IssueTypeRemovedEvent object.
issueType
(IssueType
)
The issue type removed.
JoinedGitHubContributionRepresents a user signing up for a GitHub account.
JoinedGitHubContribution
Implements
Fields for JoinedGitHubContribution
Name Description
isRestricted
(Boolean!
)
Whether this contribution is associated with a record you do not have access to. For example, your own 'first issue' contribution may have been made on a repository you can no longer access.
occurredAt
(DateTime!
)
When this contribution was made.
resourcePath
(URI!
)
The HTTP path for this contribution.
url
(URI!
)
The HTTP URL for this contribution.
user
(User!
)
The user who made this contribution.
LabelA label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.
Label
Implements
Fields for Label
Name Description
color
(String!
)
Identifies the label color.
createdAt
(DateTime
)
Identifies the date and time when the label was created.
description
(String
)
A brief description of this label.
id
(ID!
)
The Node ID of the Label object.
isDefault
(Boolean!
)
Indicates whether or not this is a default label.
issues
(IssueConnection!
)
A list of issues associated with this label.
Arguments for issues
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
filterBy
(IssueFilters
)
Filtering options for issues returned from the connection.
first
(Int
)
Returns the first n elements from the list.
labels
([String!]
)
A list of label names to filter the pull requests by.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueOrder
)
Ordering options for issues returned from the connection.
states
([IssueState!]
)
A list of states to filter the issues by.
name
(String!
)
Identifies the label name.
pullRequests
(PullRequestConnection!
)
A list of pull requests associated with this label.
Arguments for pullRequests
after
(String
)
Returns the elements in the list that come after the specified cursor.
baseRefName
(String
)
The base ref name to filter the pull requests by.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
headRefName
(String
)
The head ref name to filter the pull requests by.
labels
([String!]
)
A list of label names to filter the pull requests by.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueOrder
)
Ordering options for pull requests returned from the connection.
states
([PullRequestState!]
)
A list of states to filter the pull requests by.
repository
(Repository!
)
The repository associated with this label.
resourcePath
(URI!
)
The HTTP path for this label.
updatedAt
(DateTime
)
Identifies the date and time when the label was last updated.
url
(URI!
)
The HTTP URL for this label.
LabelConnectionThe connection type for Label.
Fields forLabelConnection
Name Description
edges
([LabelEdge]
)
A list of edges.
nodes
([Label]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
LabelEdgeAn edge in a connection.
Fields forLabelEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Label
)
The item at the end of the edge.
LabeledEventRepresents alabeled
event on a given issue or pull request.
LabeledEvent
Implements
Fields for LabeledEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the LabeledEvent object.
label
(Label!
)
Identifies the label associated with thelabeled
event.
labelable
(Labelable!
)
Identifies the Labelable
associated with the event.
Represents a given language found in repositories.
Language
Implements
Fields for Language
Name Description
color
(String
)
The color defined for the current language.
id
(ID!
)
The Node ID of the Language object.
name
(String!
)
The name of the current language.
LanguageConnectionA list of languages associated with the parent.
Fields forLanguageConnection
Name Description
edges
([LanguageEdge]
)
A list of edges.
nodes
([Language]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
totalSize
(Int!
)
The total size in bytes of files written in that language.
LanguageEdgeRepresents the language of a repository.
Fields forLanguageEdge
Name Description
cursor
(String!
)
node
(Language!
)
size
(Int!
)
The number of bytes of code written in the language.
LicenseA repository's open source license.
License
Implements
Fields for License
Name Description
body
(String!
)
The full text of the license.
conditions
([LicenseRule]!
)
The conditions set by the license.
description
(String
)
A human-readable description of the license.
featured
(Boolean!
)
Whether the license should be featured.
hidden
(Boolean!
)
Whether the license should be displayed in license pickers.
id
(ID!
)
The Node ID of the License object.
implementation
(String
)
Instructions on how to implement the license.
key
(String!
)
The lowercased SPDX ID of the license.
limitations
([LicenseRule]!
)
The limitations set by the license.
name
(String!
)
The license full name specified by https://spdx.org/licenses.
nickname
(String
)
Customary short name if applicable (e.g, GPLv3).
permissions
([LicenseRule]!
)
The permissions set by the license.
pseudoLicense
(Boolean!
)
Whether the license is a pseudo-license placeholder (e.g., other, no-license).
spdxId
(String
)
Short identifier specified by https://spdx.org/licenses.
url
(URI
)
URL to the license on https://choosealicense.com.
LicenseRuleDescribes a License's conditions, permissions, and limitations.
Fields forLicenseRule
Name Description
description
(String!
)
A description of the rule.
key
(String!
)
The machine-readable rule key.
label
(String!
)
The human-readable rule label.
LinkedBranchA branch linked to an issue.
LinkedBranch
Implements
Fields for LinkedBranch
Name Description
id
(ID!
)
The Node ID of the LinkedBranch object.
ref
(Ref
)
The branch's ref.
LinkedBranchEdgeAn edge in a connection.
Fields forLinkedBranchEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(LinkedBranch
)
The item at the end of the edge.
LockedEventRepresents alocked
event on a given issue or pull request.
LockedEvent
Implements
Fields for LockedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the LockedEvent object.
lockReason
(LockReason
)
Reason that the conversation was locked (optional).
lockable
(Lockable!
)
Object that was locked.
MannequinA placeholder user for attribution of imported data on GitHub.
Mannequin
Implements
Fields for Mannequin
Name Description
avatarUrl
(URI!
)
A URL pointing to the GitHub App's public avatar.
Arguments for avatarUrl
size
(Int
)
The size of the resulting square image.
claimant
(User
)
The user that has claimed the data attributed to this mannequin.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
email
(String
)
The mannequin's email on the source instance.
id
(ID!
)
The Node ID of the Mannequin object.
login
(String!
)
The username of the actor.
name
(String
)
The display name of the imported mannequin.
resourcePath
(URI!
)
The HTML path to this resource.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The URL to this resource.
MannequinConnectionA list of mannequins.
Fields forMannequinConnection
Name Description
edges
([MannequinEdge]
)
A list of edges.
nodes
([Mannequin]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
MannequinEdgeRepresents a mannequin.
Fields forMannequinEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Mannequin
)
The item at the end of the edge.
MarkedAsDuplicateEventRepresents amarked_as_duplicate
event on a given issue or pull request.
MarkedAsDuplicateEvent
Implements
Fields for MarkedAsDuplicateEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
canonical
(IssueOrPullRequest
)
The authoritative issue or pull request which has been duplicated by another.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
duplicate
(IssueOrPullRequest
)
The issue or pull request which has been marked as a duplicate of another.
id
(ID!
)
The Node ID of the MarkedAsDuplicateEvent object.
isCrossRepository
(Boolean!
)
Canonical and duplicate belong to different repositories.
MarketplaceCategoryA public description of a Marketplace category.
MarketplaceCategory
Implements
Fields for MarketplaceCategory
Name Description
description
(String
)
The category's description.
howItWorks
(String
)
The technical description of how apps listed in this category work with GitHub.
id
(ID!
)
The Node ID of the MarketplaceCategory object.
name
(String!
)
The category's name.
primaryListingCount
(Int!
)
How many Marketplace listings have this as their primary category.
resourcePath
(URI!
)
The HTTP path for this Marketplace category.
secondaryListingCount
(Int!
)
How many Marketplace listings have this as their secondary category.
slug
(String!
)
The short name of the category used in its URL.
url
(URI!
)
The HTTP URL for this Marketplace category.
MarketplaceListingA listing in the GitHub integration marketplace.
MarketplaceListing
Implements
Fields for MarketplaceListing
Name Description
app
(App
)
The GitHub App this listing represents.
companyUrl
(URI
)
URL to the listing owner's company site.
configurationResourcePath
(URI!
)
The HTTP path for configuring access to the listing's integration or OAuth app.
configurationUrl
(URI!
)
The HTTP URL for configuring access to the listing's integration or OAuth app.
documentationUrl
(URI
)
URL to the listing's documentation.
extendedDescription
(String
)
The listing's detailed description.
extendedDescriptionHTML
(HTML!
)
The listing's detailed description rendered to HTML.
fullDescription
(String!
)
The listing's introductory description.
fullDescriptionHTML
(HTML!
)
The listing's introductory description rendered to HTML.
hasPublishedFreeTrialPlans
(Boolean!
)
Does this listing have any plans with a free trial?.
hasTermsOfService
(Boolean!
)
Does this listing have a terms of service link?.
hasVerifiedOwner
(Boolean!
)
Whether the creator of the app is a verified org.
howItWorks
(String
)
A technical description of how this app works with GitHub.
howItWorksHTML
(HTML!
)
The listing's technical description rendered to HTML.
id
(ID!
)
The Node ID of the MarketplaceListing object.
installationUrl
(URI
)
URL to install the product to the viewer's account or organization.
installedForViewer
(Boolean!
)
Whether this listing's app has been installed for the current viewer.
isArchived
(Boolean!
)
Whether this listing has been removed from the Marketplace.
isDraft
(Boolean!
)
Whether this listing is still an editable draft that has not been submitted for review and is not publicly visible in the Marketplace.
isPaid
(Boolean!
)
Whether the product this listing represents is available as part of a paid plan.
isPublic
(Boolean!
)
Whether this listing has been approved for display in the Marketplace.
isRejected
(Boolean!
)
Whether this listing has been rejected by GitHub for display in the Marketplace.
isUnverified
(Boolean!
)
Whether this listing has been approved for unverified display in the Marketplace.
isUnverifiedPending
(Boolean!
)
Whether this draft listing has been submitted for review for approval to be unverified in the Marketplace.
isVerificationPendingFromDraft
(Boolean!
)
Whether this draft listing has been submitted for review from GitHub for approval to be verified in the Marketplace.
isVerificationPendingFromUnverified
(Boolean!
)
Whether this unverified listing has been submitted for review from GitHub for approval to be verified in the Marketplace.
isVerified
(Boolean!
)
Whether this listing has been approved for verified display in the Marketplace.
logoBackgroundColor
(String!
)
The hex color code, without the leading '#', for the logo background.
logoUrl
(URI
)
URL for the listing's logo image.
Arguments for logoUrl
size
(Int
)
The size in pixels of the resulting square image.
The default value is 400
.
name
(String!
)
The listing's full name.
normalizedShortDescription
(String!
)
The listing's very short description without a trailing period or ampersands.
pricingUrl
(URI
)
URL to the listing's detailed pricing.
primaryCategory
(MarketplaceCategory!
)
The category that best describes the listing.
privacyPolicyUrl
(URI!
)
URL to the listing's privacy policy, may return an empty string for listings that do not require a privacy policy URL.
resourcePath
(URI!
)
The HTTP path for the Marketplace listing.
screenshotUrls
([String]!
)
The URLs for the listing's screenshots.
secondaryCategory
(MarketplaceCategory
)
An alternate category that describes the listing.
shortDescription
(String!
)
The listing's very short description.
slug
(String!
)
The short name of the listing used in its URL.
statusUrl
(URI
)
URL to the listing's status page.
supportEmail
(String
)
An email address for support for this listing's app.
supportUrl
(URI!
)
Either a URL or an email address for support for this listing's app, may return an empty string for listings that do not require a support URL.
termsOfServiceUrl
(URI
)
URL to the listing's terms of service.
url
(URI!
)
The HTTP URL for the Marketplace listing.
viewerCanAddPlans
(Boolean!
)
Can the current viewer add plans for this Marketplace listing.
viewerCanApprove
(Boolean!
)
Can the current viewer approve this Marketplace listing.
viewerCanDelist
(Boolean!
)
Can the current viewer delist this Marketplace listing.
viewerCanEdit
(Boolean!
)
Can the current viewer edit this Marketplace listing.
viewerCanEditCategories
(Boolean!
)
Can the current viewer edit the primary and secondary category of this Marketplace listing.
viewerCanEditPlans
(Boolean!
)
Can the current viewer edit the plans for this Marketplace listing.
viewerCanRedraft
(Boolean!
)
Can the current viewer return this Marketplace listing to draft state so it becomes editable again.
viewerCanReject
(Boolean!
)
Can the current viewer reject this Marketplace listing by returning it to an editable draft state or rejecting it entirely.
viewerCanRequestApproval
(Boolean!
)
Can the current viewer request this listing be reviewed for display in the Marketplace as verified.
viewerHasPurchased
(Boolean!
)
Indicates whether the current user has an active subscription to this Marketplace listing.
viewerHasPurchasedForAllOrganizations
(Boolean!
)
Indicates if the current user has purchased a subscription to this Marketplace listing for all of the organizations the user owns.
viewerIsListingAdmin
(Boolean!
)
Does the current viewer role allow them to administer this Marketplace listing.
MaxFilePathLengthParametersPrevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
Fields forMaxFilePathLengthParameters
Name Description
maxFilePathLength
(Int!
)
The maximum amount of characters allowed in file paths.
MaxFileSizeParametersPrevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
Fields forMaxFileSizeParameters
Name Description
maxFileSize
(Int!
)
The maximum file size allowed in megabytes. This limit does not apply to Git Large File Storage (Git LFS).
MemberFeatureRequestNotificationRepresents a member feature request notification.
MemberFeatureRequestNotification
Implements
Fields for MemberFeatureRequestNotification
Name Description
body
(String!
)
Represents member feature request body containing entity name and the number of feature requests.
id
(ID!
)
The Node ID of the MemberFeatureRequestNotification object.
title
(String!
)
Represents member feature request notification title.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
MembersCanDeleteReposClearAuditEntryAudit log entry for a members_can_delete_repos.clear event.
MembersCanDeleteReposClearAuditEntry
Implements
Fields for MembersCanDeleteReposClearAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
enterpriseResourcePath
(URI
)
The HTTP path for this enterprise.
enterpriseSlug
(String
)
The slug of the enterprise.
enterpriseUrl
(URI
)
The HTTP URL for this enterprise.
id
(ID!
)
The Node ID of the MembersCanDeleteReposClearAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
MembersCanDeleteReposDisableAuditEntryAudit log entry for a members_can_delete_repos.disable event.
MembersCanDeleteReposDisableAuditEntry
Implements
Fields for MembersCanDeleteReposDisableAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
enterpriseResourcePath
(URI
)
The HTTP path for this enterprise.
enterpriseSlug
(String
)
The slug of the enterprise.
enterpriseUrl
(URI
)
The HTTP URL for this enterprise.
id
(ID!
)
The Node ID of the MembersCanDeleteReposDisableAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
MembersCanDeleteReposEnableAuditEntryAudit log entry for a members_can_delete_repos.enable event.
MembersCanDeleteReposEnableAuditEntry
Implements
Fields for MembersCanDeleteReposEnableAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
enterpriseResourcePath
(URI
)
The HTTP path for this enterprise.
enterpriseSlug
(String
)
The slug of the enterprise.
enterpriseUrl
(URI
)
The HTTP URL for this enterprise.
id
(ID!
)
The Node ID of the MembersCanDeleteReposEnableAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
MentionedEventRepresents amentioned
event on a given issue or pull request.
MentionedEvent
Implements
Fields for MentionedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
id
(ID!
)
The Node ID of the MentionedEvent object.
MergeQueueThe queue of pull request entries to be merged into a protected branch in a repository.
MergeQueue
Implements
Fields for MergeQueue
Name Description
configuration
(MergeQueueConfiguration
)
The configuration for this merge queue.
entries
(MergeQueueEntryConnection
)
The entries in the queue.
Arguments for entries
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
id
(ID!
)
The Node ID of the MergeQueue object.
nextEntryEstimatedTimeToMerge
(Int
)
The estimated time in seconds until a newly added entry would be merged.
repository
(Repository
)
The repository this merge queue belongs to.
resourcePath
(URI!
)
The HTTP path for this merge queue.
url
(URI!
)
The HTTP URL for this merge queue.
MergeQueueConfigurationConfiguration for a MergeQueue.
Fields forMergeQueueConfiguration
Name Description
checkResponseTimeout
(Int
)
The amount of time in minutes to wait for a check response before considering it a failure.
maximumEntriesToBuild
(Int
)
The maximum number of entries to build at once.
maximumEntriesToMerge
(Int
)
The maximum number of entries to merge at once.
mergeMethod
(PullRequestMergeMethod
)
The merge method to use for this queue.
mergingStrategy
(MergeQueueMergingStrategy
)
The strategy to use when merging entries.
minimumEntriesToMerge
(Int
)
The minimum number of entries required to merge at once.
minimumEntriesToMergeWaitTime
(Int
)
The amount of time in minutes to wait before ignoring the minumum number of entries in the queue requirement and merging a collection of entries.
MergeQueueEntryEntries in a MergeQueue.
MergeQueueEntry
Implements
Fields for MergeQueueEntry
Name Description
baseCommit
(Commit
)
The base commit for this entry.
enqueuedAt
(DateTime!
)
The date and time this entry was added to the merge queue.
enqueuer
(Actor!
)
The actor that enqueued this entry.
estimatedTimeToMerge
(Int
)
The estimated time in seconds until this entry will be merged.
headCommit
(Commit
)
The head commit for this entry.
id
(ID!
)
The Node ID of the MergeQueueEntry object.
jump
(Boolean!
)
Whether this pull request should jump the queue.
mergeQueue
(MergeQueue
)
The merge queue that this entry belongs to.
position
(Int!
)
The position of this entry in the queue.
pullRequest
(PullRequest
)
The pull request that will be added to a merge group.
solo
(Boolean!
)
Does this pull request need to be deployed on its own.
state
(MergeQueueEntryState!
)
The state of this entry in the queue.
MergeQueueParametersMerges must be performed via a merge queue.
Fields forMergeQueueParameters
Name Description
checkResponseTimeoutMinutes
(Int!
)
Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed.
groupingStrategy
(MergeQueueGroupingStrategy!
)
When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.
maxEntriesToBuild
(Int!
)
Limit the number of queued pull requests requesting checks and workflow runs at the same time.
maxEntriesToMerge
(Int!
)
The maximum number of PRs that will be merged together in a group.
mergeMethod
(MergeQueueMergeMethod!
)
Method to use when merging changes from queued pull requests.
minEntriesToMerge
(Int!
)
The minimum number of PRs that will be merged together in a group.
minEntriesToMergeWaitMinutes
(Int!
)
The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.
MergedEventRepresents amerged
event on a given pull request.
MergedEvent
Implements
Fields for MergedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
commit
(Commit
)
Identifies the commit associated with the merge
event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the MergedEvent object.
mergeRef
(Ref
)
Identifies the Ref associated with the merge
event.
mergeRefName
(String!
)
Identifies the name of the Ref associated with the merge
event.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
resourcePath
(URI!
)
The HTTP path for this merged event.
url
(URI!
)
The HTTP URL for this merged event.
MigrationSourceA GitHub Enterprise Importer (GEI) migration source.
MigrationSource
Implements
Fields for MigrationSource
Name Description
id
(ID!
)
The Node ID of the MigrationSource object.
name
(String!
)
The migration source name.
type
(MigrationSourceType!
)
The migration source type.
url
(URI!
)
The migration source URL, for example https://github.com
or https://monalisa.ghe.com
.
Represents a Milestone object on a given repository.
Milestone
Implements
Fields for Milestone
Name Description
closed
(Boolean!
)
Indicates if the object is closed (definition of closed may depend on type).
closedAt
(DateTime
)
Identifies the date and time when the object was closed.
closedIssueCount
(Int!
)
Identifies the number of closed issues associated with the milestone.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor
)
Identifies the actor who created the milestone.
description
(String
)
Identifies the description of the milestone.
descriptionHTML
(String
)
The HTML rendered description of the milestone using GitHub Flavored Markdown.
dueOn
(DateTime
)
Identifies the due date of the milestone.
id
(ID!
)
The Node ID of the Milestone object.
issues
(IssueConnection!
)
A list of issues associated with the milestone.
Arguments for issues
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
filterBy
(IssueFilters
)
Filtering options for issues returned from the connection.
first
(Int
)
Returns the first n elements from the list.
labels
([String!]
)
A list of label names to filter the pull requests by.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueOrder
)
Ordering options for issues returned from the connection.
states
([IssueState!]
)
A list of states to filter the issues by.
number
(Int!
)
Identifies the number of the milestone.
openIssueCount
(Int!
)
Identifies the number of open issues associated with the milestone.
progressPercentage
(Float!
)
Identifies the percentage complete for the milestone.
pullRequests
(PullRequestConnection!
)
A list of pull requests associated with the milestone.
Arguments for pullRequests
after
(String
)
Returns the elements in the list that come after the specified cursor.
baseRefName
(String
)
The base ref name to filter the pull requests by.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
headRefName
(String
)
The head ref name to filter the pull requests by.
labels
([String!]
)
A list of label names to filter the pull requests by.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueOrder
)
Ordering options for pull requests returned from the connection.
states
([PullRequestState!]
)
A list of states to filter the pull requests by.
repository
(Repository!
)
The repository associated with this milestone.
resourcePath
(URI!
)
The HTTP path for this milestone.
state
(MilestoneState!
)
Identifies the state of the milestone.
title
(String!
)
Identifies the title of the milestone.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this milestone.
viewerCanClose
(Boolean!
)
Indicates if the object can be closed by the viewer.
viewerCanReopen
(Boolean!
)
Indicates if the object can be reopened by the viewer.
MilestoneConnectionThe connection type for Milestone.
Fields forMilestoneConnection
Name Description
edges
([MilestoneEdge]
)
A list of edges.
nodes
([Milestone]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
MilestoneEdgeAn edge in a connection.
Fields forMilestoneEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Milestone
)
The item at the end of the edge.
MilestonedEventRepresents amilestoned
event on a given issue or pull request.
MilestonedEvent
Implements
Fields for MilestonedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the MilestonedEvent object.
milestoneTitle
(String!
)
Identifies the milestone title associated with themilestoned
event.
subject
(MilestoneItem!
)
Object referenced by event.
MovedColumnsInProjectEventRepresents amoved_columns_in_project
event on a given issue or pull request.
MovedColumnsInProjectEvent
Implements
Fields for MovedColumnsInProjectEvent
OIDCProvider
An OIDC identity provider configured to provision identities for an enterprise. Visible to enterprise owners or enterprise owners' personal access tokens (classic) with read:enterprise or admin:enterprise scope.
OIDCProvider
Implements
Fields for OIDCProvider
Name Description
enterprise
(Enterprise
)
The enterprise this identity provider belongs to.
externalIdentities
(ExternalIdentityConnection!
)
ExternalIdentities provisioned by this identity provider.
Arguments for externalIdentities
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
login
(String
)
Filter to external identities with the users login.
membersOnly
(Boolean
)
Filter to external identities with valid org membership only.
userName
(String
)
Filter to external identities with the users userName/NameID attribute.
id
(ID!
)
The Node ID of the OIDCProvider object.
providerType
(OIDCProviderType!
)
The OIDC identity provider type.
tenantId
(String!
)
The id of the tenant this provider is attached to.
OauthApplicationCreateAuditEntryAudit log entry for a oauth_application.create event.
OauthApplicationCreateAuditEntry
Implements
Fields for OauthApplicationCreateAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
applicationUrl
(URI
)
The application URL of the OAuth application.
Warning
applicationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
callbackUrl
(URI
)
The callback URL of the OAuth application.
Warning
callbackUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OauthApplicationCreateAuditEntry object.
oauthApplicationName
(String
)
The name of the OAuth application.
oauthApplicationResourcePath
(URI
)
The HTTP path for the OAuth application.
oauthApplicationUrl
(URI
)
The HTTP URL for the OAuth application.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
rateLimit
(Int
)
The rate limit of the OAuth application.
Warning
rateLimit
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
state
(OauthApplicationCreateAuditEntryState
)
The state of the OAuth application.
Warning
state
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgAddBillingManagerAuditEntryAudit log entry for a org.add_billing_manager.
OrgAddBillingManagerAuditEntry
Implements
Fields for OrgAddBillingManagerAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgAddBillingManagerAuditEntry object.
invitationEmail
(String
)
The email address used to invite a billing manager for the organization.
Warning
invitationEmail
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgAddMemberAuditEntryAudit log entry for a org.add_member.
OrgAddMemberAuditEntry
Implements
Fields for OrgAddMemberAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgAddMemberAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
permission
(OrgAddMemberAuditEntryPermission
)
The permission level of the member added to the organization.
Warning
permission
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgBlockUserAuditEntryAudit log entry for a org.block_user.
OrgBlockUserAuditEntry
Implements
Fields for OrgBlockUserAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
blockedUser
(User
)
The blocked user.
Warning
blockedUser
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
blockedUserName
(String
)
The username of the blocked user.
Warning
blockedUserName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
blockedUserResourcePath
(URI
)
The HTTP path for the blocked user.
Warning
blockedUserResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
blockedUserUrl
(URI
)
The HTTP URL for the blocked user.
Warning
blockedUserUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgBlockUserAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgConfigDisableCollaboratorsOnlyAuditEntryAudit log entry for a org.config.disable_collaborators_only event.
OrgConfigDisableCollaboratorsOnlyAuditEntry
Implements
Fields for OrgConfigDisableCollaboratorsOnlyAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgConfigDisableCollaboratorsOnlyAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgConfigEnableCollaboratorsOnlyAuditEntryAudit log entry for a org.config.enable_collaborators_only event.
OrgConfigEnableCollaboratorsOnlyAuditEntry
Implements
Fields for OrgConfigEnableCollaboratorsOnlyAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgConfigEnableCollaboratorsOnlyAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgCreateAuditEntryAudit log entry for a org.create event.
OrgCreateAuditEntry
Implements
Fields for OrgCreateAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
billingPlan
(OrgCreateAuditEntryBillingPlan
)
The billing plan for the Organization.
Warning
billingPlan
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgCreateAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgDisableOauthAppRestrictionsAuditEntryAudit log entry for a org.disable_oauth_app_restrictions event.
OrgDisableOauthAppRestrictionsAuditEntry
Implements
Fields for OrgDisableOauthAppRestrictionsAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgDisableOauthAppRestrictionsAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgDisableSamlAuditEntryAudit log entry for a org.disable_saml event.
OrgDisableSamlAuditEntry
Implements
Fields for OrgDisableSamlAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
digestMethodUrl
(URI
)
The SAML provider's digest algorithm URL.
Warning
digestMethodUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgDisableSamlAuditEntry object.
issuerUrl
(URI
)
The SAML provider's issuer URL.
Warning
issuerUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
signatureMethodUrl
(URI
)
The SAML provider's signature algorithm URL.
Warning
signatureMethodUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
singleSignOnUrl
(URI
)
The SAML provider's single sign-on URL.
Warning
singleSignOnUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgDisableTwoFactorRequirementAuditEntryAudit log entry for a org.disable_two_factor_requirement event.
OrgDisableTwoFactorRequirementAuditEntry
Implements
Fields for OrgDisableTwoFactorRequirementAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgDisableTwoFactorRequirementAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgEnableOauthAppRestrictionsAuditEntryAudit log entry for a org.enable_oauth_app_restrictions event.
OrgEnableOauthAppRestrictionsAuditEntry
Implements
Fields for OrgEnableOauthAppRestrictionsAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgEnableOauthAppRestrictionsAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgEnableSamlAuditEntryAudit log entry for a org.enable_saml event.
OrgEnableSamlAuditEntry
Implements
Fields for OrgEnableSamlAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
digestMethodUrl
(URI
)
The SAML provider's digest algorithm URL.
Warning
digestMethodUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgEnableSamlAuditEntry object.
issuerUrl
(URI
)
The SAML provider's issuer URL.
Warning
issuerUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
signatureMethodUrl
(URI
)
The SAML provider's signature algorithm URL.
Warning
signatureMethodUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
singleSignOnUrl
(URI
)
The SAML provider's single sign-on URL.
Warning
singleSignOnUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgEnableTwoFactorRequirementAuditEntryAudit log entry for a org.enable_two_factor_requirement event.
OrgEnableTwoFactorRequirementAuditEntry
Implements
Fields for OrgEnableTwoFactorRequirementAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgEnableTwoFactorRequirementAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgInviteMemberAuditEntryAudit log entry for a org.invite_member event.
OrgInviteMemberAuditEntry
Implements
Fields for OrgInviteMemberAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
email
(String
)
The email address of the organization invitation.
Warning
email
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgInviteMemberAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationInvitation
(OrganizationInvitation
)
The organization invitation.
Warning
organizationInvitation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgInviteToBusinessAuditEntryAudit log entry for a org.invite_to_business event.
OrgInviteToBusinessAuditEntry
Implements
Fields for OrgInviteToBusinessAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
enterpriseResourcePath
(URI
)
The HTTP path for this enterprise.
enterpriseSlug
(String
)
The slug of the enterprise.
enterpriseUrl
(URI
)
The HTTP URL for this enterprise.
id
(ID!
)
The Node ID of the OrgInviteToBusinessAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgOauthAppAccessApprovedAuditEntryAudit log entry for a org.oauth_app_access_approved event.
OrgOauthAppAccessApprovedAuditEntry
Implements
Fields for OrgOauthAppAccessApprovedAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgOauthAppAccessApprovedAuditEntry object.
oauthApplicationName
(String
)
The name of the OAuth application.
oauthApplicationResourcePath
(URI
)
The HTTP path for the OAuth application.
oauthApplicationUrl
(URI
)
The HTTP URL for the OAuth application.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgOauthAppAccessBlockedAuditEntryAudit log entry for a org.oauth_app_access_blocked event.
OrgOauthAppAccessBlockedAuditEntry
Implements
Fields for OrgOauthAppAccessBlockedAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgOauthAppAccessBlockedAuditEntry object.
oauthApplicationName
(String
)
The name of the OAuth application.
oauthApplicationResourcePath
(URI
)
The HTTP path for the OAuth application.
oauthApplicationUrl
(URI
)
The HTTP URL for the OAuth application.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgOauthAppAccessDeniedAuditEntryAudit log entry for a org.oauth_app_access_denied event.
OrgOauthAppAccessDeniedAuditEntry
Implements
Fields for OrgOauthAppAccessDeniedAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgOauthAppAccessDeniedAuditEntry object.
oauthApplicationName
(String
)
The name of the OAuth application.
oauthApplicationResourcePath
(URI
)
The HTTP path for the OAuth application.
oauthApplicationUrl
(URI
)
The HTTP URL for the OAuth application.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgOauthAppAccessRequestedAuditEntryAudit log entry for a org.oauth_app_access_requested event.
OrgOauthAppAccessRequestedAuditEntry
Implements
Fields for OrgOauthAppAccessRequestedAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgOauthAppAccessRequestedAuditEntry object.
oauthApplicationName
(String
)
The name of the OAuth application.
oauthApplicationResourcePath
(URI
)
The HTTP path for the OAuth application.
oauthApplicationUrl
(URI
)
The HTTP URL for the OAuth application.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgOauthAppAccessUnblockedAuditEntryAudit log entry for a org.oauth_app_access_unblocked event.
OrgOauthAppAccessUnblockedAuditEntry
Implements
Fields for OrgOauthAppAccessUnblockedAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgOauthAppAccessUnblockedAuditEntry object.
oauthApplicationName
(String
)
The name of the OAuth application.
oauthApplicationResourcePath
(URI
)
The HTTP path for the OAuth application.
oauthApplicationUrl
(URI
)
The HTTP URL for the OAuth application.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgRemoveBillingManagerAuditEntryAudit log entry for a org.remove_billing_manager event.
OrgRemoveBillingManagerAuditEntry
Implements
Fields for OrgRemoveBillingManagerAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgRemoveBillingManagerAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
reason
(OrgRemoveBillingManagerAuditEntryReason
)
The reason for the billing manager being removed.
Warning
reason
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgRemoveMemberAuditEntryAudit log entry for a org.remove_member event.
OrgRemoveMemberAuditEntry
Implements
Fields for OrgRemoveMemberAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgRemoveMemberAuditEntry object.
membershipTypes
([OrgRemoveMemberAuditEntryMembershipType!]
)
The types of membership the member has with the organization.
Warning
membershipTypes
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
reason
(OrgRemoveMemberAuditEntryReason
)
The reason for the member being removed.
Warning
reason
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgRemoveOutsideCollaboratorAuditEntryAudit log entry for a org.remove_outside_collaborator event.
OrgRemoveOutsideCollaboratorAuditEntry
Implements
Fields for OrgRemoveOutsideCollaboratorAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgRemoveOutsideCollaboratorAuditEntry object.
membershipTypes
([OrgRemoveOutsideCollaboratorAuditEntryMembershipType!]
)
The types of membership the outside collaborator has with the organization.
Warning
membershipTypes
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
reason
(OrgRemoveOutsideCollaboratorAuditEntryReason
)
The reason for the outside collaborator being removed from the Organization.
Warning
reason
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgRestoreMemberAuditEntryAudit log entry for a org.restore_member event.
OrgRestoreMemberAuditEntry
Implements
Fields for OrgRestoreMemberAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgRestoreMemberAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
restoredCustomEmailRoutingsCount
(Int
)
The number of custom email routings for the restored member.
Warning
restoredCustomEmailRoutingsCount
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
restoredIssueAssignmentsCount
(Int
)
The number of issue assignments for the restored member.
Warning
restoredIssueAssignmentsCount
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
restoredMemberships
([OrgRestoreMemberAuditEntryMembership!]
)
Restored organization membership objects.
Warning
restoredMemberships
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
restoredMembershipsCount
(Int
)
The number of restored memberships.
Warning
restoredMembershipsCount
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
restoredRepositoriesCount
(Int
)
The number of repositories of the restored member.
Warning
restoredRepositoriesCount
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
restoredRepositoryStarsCount
(Int
)
The number of starred repositories for the restored member.
Warning
restoredRepositoryStarsCount
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
restoredRepositoryWatchesCount
(Int
)
The number of watched repositories for the restored member.
Warning
restoredRepositoryWatchesCount
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgRestoreMemberMembershipOrganizationAuditEntryDataMetadata for an organization membership for org.restore_member actions.
OrgRestoreMemberMembershipOrganizationAuditEntryData
Implements
Fields for OrgRestoreMemberMembershipOrganizationAuditEntryData
Name Description
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgRestoreMemberMembershipRepositoryAuditEntryDataMetadata for a repository membership for org.restore_member actions.
OrgRestoreMemberMembershipRepositoryAuditEntryData
Implements
Fields for OrgRestoreMemberMembershipRepositoryAuditEntryData
Name Description
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
OrgRestoreMemberMembershipTeamAuditEntryDataMetadata for a team membership for org.restore_member actions.
OrgRestoreMemberMembershipTeamAuditEntryData
Implements
Fields for OrgRestoreMemberMembershipTeamAuditEntryData
Name Description
team
(Team
)
The team associated with the action.
teamName
(String
)
The name of the team.
teamResourcePath
(URI
)
The HTTP path for this team.
teamUrl
(URI
)
The HTTP URL for this team.
OrgUnblockUserAuditEntryAudit log entry for a org.unblock_user.
OrgUnblockUserAuditEntry
Implements
Fields for OrgUnblockUserAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
blockedUser
(User
)
The user being unblocked by the organization.
Warning
blockedUser
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
blockedUserName
(String
)
The username of the blocked user.
Warning
blockedUserName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
blockedUserResourcePath
(URI
)
The HTTP path for the blocked user.
Warning
blockedUserResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
blockedUserUrl
(URI
)
The HTTP URL for the blocked user.
Warning
blockedUserUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgUnblockUserAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgUpdateDefaultRepositoryPermissionAuditEntryAudit log entry for a org.update_default_repository_permission.
OrgUpdateDefaultRepositoryPermissionAuditEntry
Implements
Fields for OrgUpdateDefaultRepositoryPermissionAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgUpdateDefaultRepositoryPermissionAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
permission
(OrgUpdateDefaultRepositoryPermissionAuditEntryPermission
)
The new base repository permission level for the organization.
Warning
permission
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
permissionWas
(OrgUpdateDefaultRepositoryPermissionAuditEntryPermission
)
The former base repository permission level for the organization.
Warning
permissionWas
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgUpdateMemberAuditEntryAudit log entry for a org.update_member event.
OrgUpdateMemberAuditEntry
Implements
Fields for OrgUpdateMemberAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgUpdateMemberAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
permission
(OrgUpdateMemberAuditEntryPermission
)
The new member permission level for the organization.
Warning
permission
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
permissionWas
(OrgUpdateMemberAuditEntryPermission
)
The former member permission level for the organization.
Warning
permissionWas
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgUpdateMemberRepositoryCreationPermissionAuditEntryAudit log entry for a org.update_member_repository_creation_permission event.
OrgUpdateMemberRepositoryCreationPermissionAuditEntry
Implements
Fields for OrgUpdateMemberRepositoryCreationPermissionAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
canCreateRepositories
(Boolean
)
Can members create repositories in the organization.
Warning
canCreateRepositories
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgUpdateMemberRepositoryCreationPermissionAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
visibility
(OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility
)
The permission for visibility level of repositories for this organization.
Warning
visibility
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrgUpdateMemberRepositoryInvitationPermissionAuditEntryAudit log entry for a org.update_member_repository_invitation_permission event.
OrgUpdateMemberRepositoryInvitationPermissionAuditEntry
Implements
Fields for OrgUpdateMemberRepositoryInvitationPermissionAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
canInviteOutsideCollaboratorsToRepositories
(Boolean
)
Can outside collaborators be invited to repositories in the organization.
Warning
canInviteOutsideCollaboratorsToRepositories
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the OrgUpdateMemberRepositoryInvitationPermissionAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
OrganizationAn account on GitHub, with one or more owners, that has repositories, members and teams.
Organization
Implements
Actor
MemberStatusable
Node
PackageOwner
ProfileOwner
ProjectOwner
ProjectV2Owner
ProjectV2Recent
RepositoryDiscussionAuthor
RepositoryDiscussionCommentAuthor
RepositoryOwner
Sponsorable
UniformResourceLocatable
Organization
Name Description
announcementBanner
(AnnouncementBanner
)
The announcement banner set on this organization, if any. Only visible to members of the organization's enterprise.
anyPinnableItems
(Boolean!
)
Determine if this repository owner has any items that can be pinned to their profile.
Arguments for anyPinnableItems
type
(PinnableItemType
)
Filter to only a particular kind of pinnable item.
archivedAt
(DateTime
)
Identifies the date and time when the organization was archived.
auditLog
(OrganizationAuditEntryConnection!
)
Audit log entries of the organization.
Warning
auditLog
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
Arguments for auditLog
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(AuditLogOrder
)
Ordering options for the returned audit log entries.
query
(String
)
The query string to filter audit entries.
avatarUrl
(URI!
)
A URL pointing to the organization's public avatar.
Arguments for avatarUrl
size
(Int
)
The size of the resulting square image.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
description
(String
)
The organization's public profile description.
descriptionHTML
(String
)
The organization's public profile description rendered to HTML.
domains
(VerifiableDomainConnection
)
A list of domains owned by the organization.
Arguments for domains
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
isApproved
(Boolean
)
Filter by if the domain is approved.
isVerified
(Boolean
)
Filter by if the domain is verified.
last
(Int
)
Returns the last n elements from the list.
orderBy
(VerifiableDomainOrder
)
Ordering options for verifiable domains returned.
email
(String
)
The organization's public email.
enterpriseOwners
(OrganizationEnterpriseOwnerConnection!
)
A list of owners of the organization's enterprise account.
Arguments for enterpriseOwners
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrgEnterpriseOwnerOrder
)
Ordering options for enterprise owners returned from the connection.
organizationRole
(RoleInOrganization
)
The organization role to filter by.
query
(String
)
The search string to look for.
estimatedNextSponsorsPayoutInCents
(Int!
)
The estimated next GitHub Sponsors payout for this user/organization in cents (USD).
hasSponsorsListing
(Boolean!
)
True if this user/organization has a GitHub Sponsors listing.
id
(ID!
)
The Node ID of the Organization object.
interactionAbility
(RepositoryInteractionAbility
)
The interaction ability settings for this organization.
ipAllowListEnabledSetting
(IpAllowListEnabledSettingValue!
)
The setting value for whether the organization has an IP allow list enabled.
ipAllowListEntries
(IpAllowListEntryConnection!
)
The IP addresses that are allowed to access resources owned by the organization.
Arguments for ipAllowListEntries
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IpAllowListEntryOrder
)
Ordering options for IP allow list entries returned.
ipAllowListForInstalledAppsEnabledSetting
(IpAllowListForInstalledAppsEnabledSettingValue!
)
The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.
isSponsoredBy
(Boolean!
)
Whether the given account is sponsoring this user/organization.
Arguments for isSponsoredBy
accountLogin
(String!
)
The target account's login.
isSponsoringViewer
(Boolean!
)
True if the viewer is sponsored by this user/organization.
isVerified
(Boolean!
)
Whether the organization has verified its profile email and website.
issueTypes
(IssueTypeConnection
)
A list of the organization's issue types.
Arguments for issueTypes
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueTypeOrder
)
Ordering options for issue types returned from the connection.
itemShowcase
(ProfileItemShowcase!
)
Showcases a selection of repositories and gists that the profile owner has either curated or that have been selected automatically based on popularity.
lifetimeReceivedSponsorshipValues
(SponsorAndLifetimeValueConnection!
)
Calculate how much each sponsor has ever paid total to this maintainer via GitHub Sponsors. Does not include sponsorships paid via Patreon.
Arguments for lifetimeReceivedSponsorshipValues
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorAndLifetimeValueOrder
)
Ordering options for results returned from the connection.
location
(String
)
The organization's public profile location.
login
(String!
)
The organization's login name.
mannequins
(MannequinConnection!
)
A list of all mannequins for this organization.
Arguments for mannequins
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
login
(String
)
Filter mannequins by login.
orderBy
(MannequinOrder
)
Ordering options for mannequins returned from the connection.
memberStatuses
(UserStatusConnection!
)
Get the status messages members of this entity have set that are either public or visible only to the organization.
Arguments for memberStatuses
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(UserStatusOrder
)
Ordering options for user statuses returned from the connection.
membersCanForkPrivateRepositories
(Boolean!
)
Members can fork private repositories in this organization.
membersWithRole
(OrganizationMemberConnection!
)
A list of users who are members of this organization.
Arguments for membersWithRole
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
monthlyEstimatedSponsorsIncomeInCents
(Int!
)
The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).
name
(String
)
The organization's public profile name.
newTeamResourcePath
(URI!
)
The HTTP path creating a new team.
newTeamUrl
(URI!
)
The HTTP URL creating a new team.
notificationDeliveryRestrictionEnabledSetting
(NotificationRestrictionSettingValue!
)
Indicates if email notification delivery for this organization is restricted to verified or approved domains.
organizationBillingEmail
(String
)
The billing email for the organization.
packages
(PackageConnection!
)
A list of packages under the owner.
Arguments for packages
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
names
([String]
)
Find packages by their names.
orderBy
(PackageOrder
)
Ordering of the returned packages.
packageType
(PackageType
)
Filter registry package by type.
repositoryId
(ID
)
Find packages in a repository by ID.
pendingMembers
(UserConnection!
)
A list of users who have been invited to join this organization.
Arguments for pendingMembers
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
pinnableItems
(PinnableItemConnection!
)
A list of repositories and gists this profile owner can pin to their profile.
Arguments for pinnableItems
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
types
([PinnableItemType!]
)
Filter the types of pinnable items that are returned.
pinnedItems
(PinnableItemConnection!
)
A list of repositories and gists this profile owner has pinned to their profile.
Arguments for pinnedItems
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
types
([PinnableItemType!]
)
Filter the types of pinned items that are returned.
pinnedItemsRemaining
(Int!
)
Returns how many more items this profile owner can pin to their profile.
project
(Project
)
Find project by number.
Warning
project
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
Arguments for project
number
(Int!
)
The project number to find.
projectV2
(ProjectV2
)
Find a project by number.
Arguments for projectV2
number
(Int!
)
The project number.
projects
(ProjectConnection!
)
A list of projects under the owner.
Warning
projects
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
Arguments for projects
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectOrder
)
Ordering options for projects returned from the connection.
search
(String
)
Query to search projects by, currently only searching by name.
states
([ProjectState!]
)
A list of states to filter the projects by.
projectsResourcePath
(URI!
)
The HTTP path listing organization's projects.
projectsUrl
(URI!
)
The HTTP URL listing organization's projects.
projectsV2
(ProjectV2Connection!
)
A list of projects under the owner.
Arguments for projectsV2
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
minPermissionLevel
(ProjectV2PermissionLevel
)
Filter projects based on user role.
The default value is READ
.
orderBy
(ProjectV2Order
)
How to order the returned projects.
query
(String
)
A project to search for under the owner.
recentProjects
(ProjectV2Connection!
)
Recent projects that this user has modified in the context of the owner.
Arguments for recentProjects
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
repositories
(RepositoryConnection!
)
A list of repositories that the user owns.
Arguments for repositories
affiliations
([RepositoryAffiliation]
)
Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
hasIssuesEnabled
(Boolean
)
If non-null, filters repositories according to whether they have issues enabled.
isArchived
(Boolean
)
If non-null, filters repositories according to whether they are archived and not maintained.
isFork
(Boolean
)
If non-null, filters repositories according to whether they are forks of another repository.
isLocked
(Boolean
)
If non-null, filters repositories according to whether they have been locked.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryOrder
)
Ordering options for repositories returned from the connection.
ownerAffiliations
([RepositoryAffiliation]
)
Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
privacy
(RepositoryPrivacy
)
If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.
visibility
(RepositoryVisibility
)
If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.
repository
(Repository
)
Find Repository.
Arguments for repository
followRenames
(Boolean
)
Follow repository renames. If disabled, a repository referenced by its old name will return an error.
The default value is true
.
name
(String!
)
Name of Repository to find.
repositoryDiscussionComments
(DiscussionCommentConnection!
)
Discussion comments this user has authored.
Arguments for repositoryDiscussionComments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
onlyAnswers
(Boolean
)
Filter discussion comments to only those that were marked as the answer.
The default value is false
.
repositoryId
(ID
)
Filter discussion comments to only those in a specific repository.
repositoryDiscussions
(DiscussionConnection!
)
Discussions this user has started.
Arguments for repositoryDiscussions
after
(String
)
Returns the elements in the list that come after the specified cursor.
answered
(Boolean
)
Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(DiscussionOrder
)
Ordering options for discussions returned from the connection.
repositoryId
(ID
)
Filter discussions to only those in a specific repository.
states
([DiscussionState!]
)
A list of states to filter the discussions by.
repositoryMigrations
(RepositoryMigrationConnection!
)
A list of all repository migrations for this organization.
Arguments for repositoryMigrations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryMigrationOrder
)
Ordering options for repository migrations returned.
repositoryName
(String
)
Filter repository migrations by repository name.
state
(MigrationState
)
Filter repository migrations by state.
requiresTwoFactorAuthentication
(Boolean
)
When true the organization requires all members, billing managers, and outside collaborators to enable two-factor authentication.
resourcePath
(URI!
)
The HTTP path for this organization.
ruleset
(RepositoryRuleset
)
Returns a single ruleset from the current organization by ID.
Arguments for ruleset
databaseId
(Int!
)
The ID of the ruleset to be returned.
includeParents
(Boolean
)
Include rulesets configured at higher levels that apply to this organization.
The default value is true
.
rulesets
(RepositoryRulesetConnection
)
A list of rulesets for this organization.
Arguments for rulesets
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
includeParents
(Boolean
)
Return rulesets configured at higher levels that apply to this organization.
The default value is true
.
last
(Int
)
Returns the last n elements from the list.
targets
([RepositoryRulesetTarget!]
)
Return rulesets that apply to the specified target.
samlIdentityProvider
(OrganizationIdentityProvider
)
The Organization's SAML identity provider. Visible to (1) organization owners, (2) organization owners' personal access tokens (classic) with read:org or admin:org scope, (3) GitHub App with an installation token with read or write access to members.
sponsoring
(SponsorConnection!
)
List of users and organizations this entity is sponsoring.
Arguments for sponsoring
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorOrder
)
Ordering options for the users and organizations returned from the connection.
sponsors
(SponsorConnection!
)
List of sponsors for this user or organization.
Arguments for sponsors
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorOrder
)
Ordering options for sponsors returned from the connection.
tierId
(ID
)
If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.
sponsorsActivities
(SponsorsActivityConnection!
)
Events involving this sponsorable, such as new sponsorships.
Arguments for sponsorsActivities
actions
([SponsorsActivityAction!]
)
Filter activities to only the specified actions.
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
includeAsSponsor
(Boolean
)
Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.
The default value is false
.
includePrivate
(Boolean
)
Whether or not to include private activities in the result set. Defaults to including public and private activities.
The default value is true
.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorsActivityOrder
)
Ordering options for activity returned from the connection.
period
(SponsorsActivityPeriod
)
Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if since
or until
is given.
The default value is MONTH
.
since
(DateTime
)
Filter activities to those that occurred on or after this time.
until
(DateTime
)
Filter activities to those that occurred before this time.
sponsorsListing
(SponsorsListing
)
The GitHub Sponsors listing for this user or organization.
sponsorshipForViewerAsSponsor
(Sponsorship
)
The sponsorship from the viewer to this user/organization; that is, the sponsorship where you're the sponsor.
Arguments for sponsorshipForViewerAsSponsor
activeOnly
(Boolean
)
Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.
The default value is true
.
sponsorshipForViewerAsSponsorable
(Sponsorship
)
The sponsorship from this user/organization to the viewer; that is, the sponsorship you're receiving.
Arguments for sponsorshipForViewerAsSponsorable
activeOnly
(Boolean
)
Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.
The default value is true
.
sponsorshipNewsletters
(SponsorshipNewsletterConnection!
)
List of sponsorship updates sent from this sponsorable to sponsors.
Arguments for sponsorshipNewsletters
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorshipNewsletterOrder
)
Ordering options for sponsorship updates returned from the connection.
sponsorshipsAsMaintainer
(SponsorshipConnection!
)
The sponsorships where this user or organization is the maintainer receiving the funds.
Arguments for sponsorshipsAsMaintainer
activeOnly
(Boolean
)
Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.
The default value is true
.
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
includePrivate
(Boolean
)
Whether or not to include private sponsorships in the result set.
The default value is false
.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorshipOrder
)
Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.
sponsorshipsAsSponsor
(SponsorshipConnection!
)
The sponsorships where this user or organization is the funder.
Arguments for sponsorshipsAsSponsor
activeOnly
(Boolean
)
Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.
The default value is true
.
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
maintainerLogins
([String!]
)
Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.
orderBy
(SponsorshipOrder
)
Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.
team
(Team
)
Find an organization's team by its slug.
Arguments for team
slug
(String!
)
The name or slug of the team to find.
teams
(TeamConnection!
)
A list of teams in this organization.
Arguments for teams
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
ldapMapped
(Boolean
)
If true, filters teams that are mapped to an LDAP Group (Enterprise only).
notificationSetting
(TeamNotificationSetting
)
If non-null, filters teams according to notification setting.
orderBy
(TeamOrder
)
Ordering options for teams returned from the connection.
privacy
(TeamPrivacy
)
If non-null, filters teams according to privacy.
query
(String
)
If non-null, filters teams with query on team name and team slug.
role
(TeamRole
)
If non-null, filters teams according to whether the viewer is an admin or member on team.
rootTeamsOnly
(Boolean
)
If true, restrict to only root teams.
The default value is false
.
userLogins
([String!]
)
User logins to filter by.
teamsResourcePath
(URI!
)
The HTTP path listing organization's teams.
teamsUrl
(URI!
)
The HTTP URL listing organization's teams.
totalSponsorshipAmountAsSponsorInCents
(Int
)
The amount in United States cents (e.g., 500 = $5.00 USD) that this entity has spent on GitHub to fund sponsorships. Only returns a value when viewed by the user themselves or by a user who can manage sponsorships for the requested organization.
Arguments for totalSponsorshipAmountAsSponsorInCents
since
(DateTime
)
Filter payments to those that occurred on or after this time.
sponsorableLogins
([String!]
)
Filter payments to those made to the users or organizations with the specified usernames.
until
(DateTime
)
Filter payments to those that occurred before this time.
twitterUsername
(String
)
The organization's Twitter username.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this organization.
viewerCanAdminister
(Boolean!
)
Organization is adminable by the viewer.
viewerCanChangePinnedItems
(Boolean!
)
Can the viewer pin repositories and gists to the profile?.
viewerCanCreateProjects
(Boolean!
)
Can the current viewer create new projects on this owner.
Warning
viewerCanCreateProjects
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
viewerCanCreateRepositories
(Boolean!
)
Viewer can create repositories on this organization.
viewerCanCreateTeams
(Boolean!
)
Viewer can create teams on this organization.
viewerCanSponsor
(Boolean!
)
Whether or not the viewer is able to sponsor this user/organization.
viewerIsAMember
(Boolean!
)
Viewer is an active member of this organization.
viewerIsFollowing
(Boolean!
)
Whether or not this Organization is followed by the viewer.
viewerIsSponsoring
(Boolean!
)
True if the viewer is sponsoring this user/organization.
webCommitSignoffRequired
(Boolean!
)
Whether contributors are required to sign off on web-based commits for repositories in this organization.
websiteUrl
(URI
)
The organization's public profile URL.
OrganizationConnectionA list of organizations managed by an enterprise.
Fields forOrganizationConnection
Name Description
edges
([OrganizationEdge]
)
A list of edges.
nodes
([Organization]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
OrganizationEdgeAn edge in a connection.
Fields forOrganizationEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Organization
)
The item at the end of the edge.
OrganizationEnterpriseOwnerEdgeAn enterprise owner in the context of an organization that is part of the enterprise.
Fields forOrganizationEnterpriseOwnerEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(User
)
The item at the end of the edge.
organizationRole
(RoleInOrganization!
)
The role of the owner with respect to the organization.
OrganizationIdentityProviderAn Identity Provider configured to provision SAML and SCIM identities for Organizations. Visible to (1) organization owners, (2) organization owners' personal access tokens (classic) with read:org or admin:org scope, (3) GitHub App with an installation token with read or write access to members.
OrganizationIdentityProvider
Implements
Fields for OrganizationIdentityProvider
Name Description
digestMethod
(URI
)
The digest algorithm used to sign SAML requests for the Identity Provider.
externalIdentities
(ExternalIdentityConnection!
)
External Identities provisioned by this Identity Provider.
Arguments for externalIdentities
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
login
(String
)
Filter to external identities with the users login.
membersOnly
(Boolean
)
Filter to external identities with valid org membership only.
userName
(String
)
Filter to external identities with the users userName/NameID attribute.
id
(ID!
)
The Node ID of the OrganizationIdentityProvider object.
idpCertificate
(X509Certificate
)
The x509 certificate used by the Identity Provider to sign assertions and responses.
issuer
(String
)
The Issuer Entity ID for the SAML Identity Provider.
organization
(Organization
)
Organization this Identity Provider belongs to.
signatureMethod
(URI
)
The signature algorithm used to sign SAML requests for the Identity Provider.
ssoUrl
(URI
)
The URL endpoint for the Identity Provider's SAML SSO.
OrganizationInvitationAn Invitation for a user to an organization.
OrganizationInvitation
Implements
Fields for OrganizationInvitation
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
email
(String
)
The email address of the user invited to the organization.
id
(ID!
)
The Node ID of the OrganizationInvitation object.
invitationSource
(OrganizationInvitationSource!
)
The source of the invitation.
invitationType
(OrganizationInvitationType!
)
The type of invitation that was sent (e.g. email, user).
invitee
(User
)
The user who was invited to the organization.
inviter
(User!
)
The user who created the invitation.
Warning
inviter
is deprecated.
inviter
will be removed. inviter
will be replaced by inviterActor
. Removal on 2024-07-01 UTC.
inviterActor
(User
)
The user who created the invitation.
organization
(Organization!
)
The organization the invite is for.
role
(OrganizationInvitationRole!
)
The user's pending role in the organization (e.g. member, owner).
OrganizationMemberEdgeRepresents a user within an organization.
Fields forOrganizationMemberEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
hasTwoFactorEnabled
(Boolean
)
Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.
node
(User
)
The item at the end of the edge.
role
(OrganizationMemberRole
)
The role this user has in the organization.
OrganizationMigrationA GitHub Enterprise Importer (GEI) organization migration.
OrganizationMigration
Implements
Fields for OrganizationMigration
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(String
)
Identifies the primary key from the database.
failureReason
(String
)
The reason the organization migration failed.
id
(ID!
)
The Node ID of the OrganizationMigration object.
remainingRepositoriesCount
(Int
)
The remaining amount of repos to be migrated.
sourceOrgName
(String!
)
The name of the source organization to be migrated.
sourceOrgUrl
(URI!
)
The URL of the source organization to migrate.
state
(OrganizationMigrationState!
)
The migration state.
targetOrgName
(String!
)
The name of the target organization.
totalRepositoriesCount
(Int
)
The total amount of repositories to be migrated.
OrganizationTeamsHovercardContextAn organization teams hovercard context.
OrganizationTeamsHovercardContext
Implements
Fields for OrganizationTeamsHovercardContext
Name Description
message
(String!
)
A string describing this context.
octicon
(String!
)
An octicon to accompany this context.
relevantTeams
(TeamConnection!
)
Teams in this organization the user is a member of that are relevant.
Arguments for relevantTeams
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
teamsResourcePath
(URI!
)
The path for the full team list for this user.
teamsUrl
(URI!
)
The URL for the full team list for this user.
totalTeamCount
(Int!
)
The total number of teams the user is on in the organization.
OrganizationsHovercardContextAn organization list hovercard context.
OrganizationsHovercardContext
Implements
Fields for OrganizationsHovercardContext
Name Description
message
(String!
)
A string describing this context.
octicon
(String!
)
An octicon to accompany this context.
relevantOrganizations
(OrganizationConnection!
)
Organizations this user is a member of that are relevant.
Arguments for relevantOrganizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for the User's organizations.
totalOrganizationCount
(Int!
)
The total number of organizations this user is in.
PackageInformation for an uploaded package.
Package
Implements
Fields for Package
Name Description
id
(ID!
)
The Node ID of the Package object.
latestVersion
(PackageVersion
)
Find the latest version for the package.
name
(String!
)
Identifies the name of the package.
packageType
(PackageType!
)
Identifies the type of the package.
repository
(Repository
)
The repository this package belongs to.
statistics
(PackageStatistics
)
Statistics about package activity.
version
(PackageVersion
)
Find package version by version string.
Arguments for version
version
(String!
)
The package version.
versions
(PackageVersionConnection!
)
list of versions for this package.
Arguments for versions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(PackageVersionOrder
)
Ordering of the returned packages.
The connection type for Package.
Fields forPackageConnection
Name Description
edges
([PackageEdge]
)
A list of edges.
nodes
([Package]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
PackageEdgeAn edge in a connection.
Fields forPackageEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Package
)
The item at the end of the edge.
PackageFileA file in a package version.
PackageFile
Implements
Fields for PackageFile
Name Description
id
(ID!
)
The Node ID of the PackageFile object.
md5
(String
)
MD5 hash of the file.
name
(String!
)
Name of the file.
packageVersion
(PackageVersion
)
The package version this file belongs to.
sha1
(String
)
SHA1 hash of the file.
sha256
(String
)
SHA256 hash of the file.
size
(Int
)
Size of the file in bytes.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI
)
URL to download the asset.
PackageFileEdgeAn edge in a connection.
Fields forPackageFileEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(PackageFile
)
The item at the end of the edge.
PackageStatisticsRepresents a object that contains package activity statistics such as downloads.
Fields forPackageStatistics
Name Description
downloadsTotalCount
(Int!
)
Number of times the package was downloaded since it was created.
PackageTagA version tag contains the mapping between a tag name and a version.
PackageTag
Implements
Fields for PackageTag
Name Description
id
(ID!
)
The Node ID of the PackageTag object.
name
(String!
)
Identifies the tag name of the version.
version
(PackageVersion
)
Version that the tag is associated with.
PackageVersionInformation about a specific package version.
PackageVersion
Implements
Fields for PackageVersion
Name Description
files
(PackageFileConnection!
)
List of files associated with this package version.
Arguments for files
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(PackageFileOrder
)
Ordering of the returned package files.
id
(ID!
)
The Node ID of the PackageVersion object.
package
(Package
)
The package associated with this version.
platform
(String
)
The platform this version was built for.
preRelease
(Boolean!
)
Whether or not this version is a pre-release.
readme
(String
)
The README of this package version.
release
(Release
)
The release associated with this package version.
statistics
(PackageVersionStatistics
)
Statistics about package activity.
summary
(String
)
The package version summary.
version
(String!
)
The version string.
PackageVersionStatisticsRepresents a object that contains package version activity statistics such as downloads.
Fields forPackageVersionStatistics
Name Description
downloadsTotalCount
(Int!
)
Number of times the package was downloaded since it was created.
PageInfoInformation about pagination in a connection.
Fields forPageInfo
Name Description
endCursor
(String
)
When paginating forwards, the cursor to continue.
hasNextPage
(Boolean!
)
When paginating forwards, are there more items?.
hasPreviousPage
(Boolean!
)
When paginating backwards, are there more items?.
startCursor
(String
)
When paginating backwards, the cursor to continue.
ParentIssueAddedEventRepresents aparent_issue_added
event on a given issue.
ParentIssueAddedEvent
Implements
Fields for ParentIssueAddedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the ParentIssueAddedEvent object.
parent
(Issue
)
The parent issue added.
ParentIssueRemovedEventRepresents aparent_issue_removed
event on a given issue.
ParentIssueRemovedEvent
Implements
Fields for ParentIssueRemovedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the ParentIssueRemovedEvent object.
parent
(Issue
)
The parent issue removed.
PermissionSourceA level of permission and source for a user's access to a repository.
Fields forPermissionSource
PinnableItemEdge
An edge in a connection.
Fields forPinnableItemEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(PinnableItem
)
The item at the end of the edge.
PinnedDiscussionA Pinned Discussion is a discussion pinned to a repository's index page.
PinnedDiscussion
Implements
Fields for PinnedDiscussion
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
discussion
(Discussion!
)
The discussion that was pinned.
gradientStopColors
([String!]!
)
Color stops of the chosen gradient.
id
(ID!
)
The Node ID of the PinnedDiscussion object.
pattern
(PinnedDiscussionPattern!
)
Background texture pattern.
pinnedBy
(Actor!
)
The actor that pinned this discussion.
preconfiguredGradient
(PinnedDiscussionGradient
)
Preconfigured background gradient option.
repository
(Repository!
)
The repository associated with this node.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
PinnedEnvironmentRepresents a pinned environment on a given repository.
PinnedEnvironment
Implements
Fields for PinnedEnvironment
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the pinned environment was created.
databaseId
(Int
)
Identifies the primary key from the database.
environment
(Environment!
)
Identifies the environment associated.
id
(ID!
)
The Node ID of the PinnedEnvironment object.
position
(Int!
)
Identifies the position of the pinned environment.
repository
(Repository!
)
The repository that this environment was pinned to.
PinnedEventRepresents apinned
event on a given issue or pull request.
PinnedEvent
Implements
Fields for PinnedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the PinnedEvent object.
issue
(Issue!
)
Identifies the issue associated with the event.
PinnedIssueA Pinned Issue is a issue pinned to a repository's index page.
PinnedIssue
Implements
Fields for PinnedIssue
Name Description
databaseId
(Int
)
Identifies the primary key from the database.
fullDatabaseId
(BigInt
)
Identifies the primary key from the database as a BigInt.
id
(ID!
)
The Node ID of the PinnedIssue object.
issue
(Issue!
)
The issue that was pinned.
pinnedBy
(Actor!
)
The actor that pinned this issue.
repository
(Repository!
)
The repository that this issue was pinned to.
PinnedIssueEdgeAn edge in a connection.
Fields forPinnedIssueEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(PinnedIssue
)
The item at the end of the edge.
PrivateRepositoryForkingDisableAuditEntryAudit log entry for a private_repository_forking.disable event.
PrivateRepositoryForkingDisableAuditEntry
Implements
Fields for PrivateRepositoryForkingDisableAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
enterpriseResourcePath
(URI
)
The HTTP path for this enterprise.
enterpriseSlug
(String
)
The slug of the enterprise.
enterpriseUrl
(URI
)
The HTTP URL for this enterprise.
id
(ID!
)
The Node ID of the PrivateRepositoryForkingDisableAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
PrivateRepositoryForkingEnableAuditEntryAudit log entry for a private_repository_forking.enable event.
PrivateRepositoryForkingEnableAuditEntry
Implements
Fields for PrivateRepositoryForkingEnableAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
enterpriseResourcePath
(URI
)
The HTTP path for this enterprise.
enterpriseSlug
(String
)
The slug of the enterprise.
enterpriseUrl
(URI
)
The HTTP URL for this enterprise.
id
(ID!
)
The Node ID of the PrivateRepositoryForkingEnableAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
ProfileItemShowcaseA curatable list of repositories relating to a repository owner, which defaults to showing the most popular repositories they own.
Fields forProfileItemShowcase
Name Description
hasPinnedItems
(Boolean!
)
Whether or not the owner has pinned any repositories or gists.
items
(PinnableItemConnection!
)
The repositories and gists in the showcase. If the profile owner has any pinned items, those will be returned. Otherwise, the profile owner's popular repositories will be returned.
Arguments for items
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
Projects manage issues, pull requests and notes within a project owner.
Project
Implements
Fields for Project
Name Description
body
(String
)
The project's description body.
Warning
body
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
bodyHTML
(HTML!
)
The projects description body rendered to HTML.
Warning
bodyHTML
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
closed
(Boolean!
)
Indicates if the object is closed (definition of closed may depend on type).
closedAt
(DateTime
)
Identifies the date and time when the object was closed.
columns
(ProjectColumnConnection!
)
List of columns in the project.
Warning
columns
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
Arguments for columns
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
Warning
createdAt
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
creator
(Actor
)
The actor who originally created the project.
Warning
creator
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
databaseId
(Int
)
Identifies the primary key from the database.
Warning
databaseId
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
id
(ID!
)
The Node ID of the Project object.
Warning
id
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
name
(String!
)
The project's name.
Warning
name
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
number
(Int!
)
The project's number.
Warning
number
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
owner
(ProjectOwner!
)
The project's owner. Currently limited to repositories, organizations, and users.
Warning
owner
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
pendingCards
(ProjectCardConnection!
)
List of pending cards in this project.
Warning
pendingCards
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
Arguments for pendingCards
after
(String
)
Returns the elements in the list that come after the specified cursor.
archivedStates
([ProjectCardArchivedState]
)
A list of archived states to filter the cards by.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
progress
(ProjectProgress!
)
Project progress details.
Warning
progress
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
resourcePath
(URI!
)
The HTTP path for this project.
Warning
resourcePath
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
state
(ProjectState!
)
Whether the project is open or closed.
Warning
state
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
Warning
updatedAt
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
url
(URI!
)
The HTTP URL for this project.
Warning
url
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
viewerCanClose
(Boolean!
)
Indicates if the object can be closed by the viewer.
viewerCanReopen
(Boolean!
)
Indicates if the object can be reopened by the viewer.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
ProjectCardA card in a project.
ProjectCard
Implements
Fields for ProjectCard
Name Description
column
(ProjectColumn
)
The project column this card is associated under. A card may only belong to one project column at a time. The column field will be null if the card is created in a pending state and has yet to be associated with a column. Once cards are associated with a column, they will not become pending in the future.
Warning
column
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
content
(ProjectCardItem
)
The card content item.
Warning
content
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
Warning
createdAt
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
creator
(Actor
)
The actor who created this card.
Warning
creator
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
databaseId
(Int
)
Identifies the primary key from the database.
Warning
databaseId
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
id
(ID!
)
The Node ID of the ProjectCard object.
Warning
id
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
isArchived
(Boolean!
)
Whether the card is archived.
Warning
isArchived
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
note
(String
)
The card note.
Warning
note
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
project
(Project!
)
The project that contains this card.
Warning
project
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
resourcePath
(URI!
)
The HTTP path for this card.
Warning
resourcePath
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
state
(ProjectCardState
)
The state of ProjectCard.
Warning
state
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
Warning
updatedAt
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
url
(URI!
)
The HTTP URL for this card.
Warning
url
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
ProjectCardEdgeAn edge in a connection.
Fields forProjectCardEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(ProjectCard
)
The item at the end of the edge.
ProjectColumnA column inside a project.
ProjectColumn
Implements
Fields for ProjectColumn
Name Description
cards
(ProjectCardConnection!
)
List of cards in the column.
Warning
cards
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
Arguments for cards
after
(String
)
Returns the elements in the list that come after the specified cursor.
archivedStates
([ProjectCardArchivedState]
)
A list of archived states to filter the cards by.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
Warning
createdAt
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
databaseId
(Int
)
Identifies the primary key from the database.
Warning
databaseId
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
id
(ID!
)
The Node ID of the ProjectColumn object.
Warning
id
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
name
(String!
)
The project column's name.
Warning
name
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
project
(Project!
)
The project that contains this column.
Warning
project
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
purpose
(ProjectColumnPurpose
)
The semantic purpose of the column.
Warning
purpose
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
resourcePath
(URI!
)
The HTTP path for this project column.
Warning
resourcePath
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
Warning
updatedAt
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
url
(URI!
)
The HTTP URL for this project column.
Warning
url
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
ProjectColumnEdgeAn edge in a connection.
Fields forProjectColumnEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(ProjectColumn
)
The item at the end of the edge.
ProjectConnectionA list of projects associated with the owner.
Fields forProjectConnection
Name Description
edges
([ProjectEdge]
)
A list of edges.
nodes
([Project]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
ProjectEdgeAn edge in a connection.
Fields forProjectEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Project
)
The item at the end of the edge.
ProjectV2New projects that manage issues, pull requests and drafts using tables and boards.
ProjectV2
Implements
Fields for ProjectV2
Name Description
closed
(Boolean!
)
Returns true if the project is closed.
closedAt
(DateTime
)
Identifies the date and time when the object was closed.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor
)
The actor who originally created the project.
databaseId
(Int
)
Identifies the primary key from the database.
Warning
databaseId
is deprecated.
databaseId
will be removed because it does not support 64-bit signed integer identifiers. Use fullDatabaseId
instead. Removal on 2025-04-01 UTC.
field
(ProjectV2FieldConfiguration
)
A field of the project.
Arguments for field
name
(String!
)
The name of the field.
fields
(ProjectV2FieldConfigurationConnection!
)
List of fields and their constraints in the project.
Arguments for fields
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectV2FieldOrder
)
Ordering options for project v2 fields returned from the connection.
fullDatabaseId
(BigInt
)
Identifies the primary key from the database as a BigInt.
id
(ID!
)
The Node ID of the ProjectV2 object.
items
(ProjectV2ItemConnection!
)
List of items in the project.
Arguments for items
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectV2ItemOrder
)
Ordering options for project v2 items returned from the connection.
number
(Int!
)
The project's number.
owner
(ProjectV2Owner!
)
The project's owner. Currently limited to organizations and users.
public
(Boolean!
)
Returns true if the project is public.
readme
(String
)
The project's readme.
repositories
(RepositoryConnection!
)
The repositories the project is linked to.
Arguments for repositories
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryOrder
)
Ordering options for repositories returned from the connection.
resourcePath
(URI!
)
The HTTP path for this project.
shortDescription
(String
)
The project's short description.
statusUpdates
(ProjectV2StatusUpdateConnection!
)
List of the status updates in the project.
Arguments for statusUpdates
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectV2StatusOrder
)
Order for connection.
teams
(TeamConnection!
)
The teams the project is linked to.
Arguments for teams
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(TeamOrder
)
Ordering options for teams returned from this connection.
template
(Boolean!
)
Returns true if this project is a template.
title
(String!
)
The project's name.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this project.
view
(ProjectV2View
)
A view of the project.
Arguments for view
number
(Int!
)
The number of a view belonging to the project.
viewerCanClose
(Boolean!
)
Indicates if the object can be closed by the viewer.
viewerCanReopen
(Boolean!
)
Indicates if the object can be reopened by the viewer.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
views
(ProjectV2ViewConnection!
)
List of views in the project.
Arguments for views
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectV2ViewOrder
)
Ordering options for project v2 views returned from the connection.
workflow
(ProjectV2Workflow
)
A workflow of the project.
Arguments for workflow
number
(Int!
)
The number of a workflow belonging to the project.
workflows
(ProjectV2WorkflowConnection!
)
List of the workflows in the project.
Arguments for workflows
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectV2WorkflowOrder
)
Ordering options for project v2 workflows returned from the connection.
The connection type for ProjectV2.
Fields forProjectV2Connection
Name Description
edges
([ProjectV2Edge]
)
A list of edges.
nodes
([ProjectV2]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
ProjectV2EdgeAn edge in a connection.
Fields forProjectV2Edge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(ProjectV2
)
The item at the end of the edge.
ProjectV2FieldA field inside a project.
ProjectV2Field
Implements
Fields for ProjectV2Field
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
dataType
(ProjectV2FieldType!
)
The field's type.
databaseId
(Int
)
Identifies the primary key from the database.
id
(ID!
)
The Node ID of the ProjectV2Field object.
name
(String!
)
The project field's name.
project
(ProjectV2!
)
The project that contains this field.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
ProjectV2ItemAn item within a Project.
ProjectV2Item
Implements
Fields for ProjectV2Item
Name Description
content
(ProjectV2ItemContent
)
The content of the referenced draft issue, issue, or pull request.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor
)
The actor who created the item.
databaseId
(Int
)
Identifies the primary key from the database.
Warning
databaseId
is deprecated.
databaseId
will be removed because it does not support 64-bit signed integer identifiers. Use fullDatabaseId
instead. Removal on 2025-04-01 UTC.
fieldValueByName
(ProjectV2ItemFieldValue
)
The field value of the first project field which matches thename
argument that is set on the item.
Arguments for fieldValueByName
name
(String!
)
The name of the field to return the field value of.
fieldValues
(ProjectV2ItemFieldValueConnection!
)
The field values that are set on the item.
Arguments for fieldValues
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectV2ItemFieldValueOrder
)
Ordering options for project v2 item field values returned from the connection.
fullDatabaseId
(BigInt
)
Identifies the primary key from the database as a BigInt.
id
(ID!
)
The Node ID of the ProjectV2Item object.
isArchived
(Boolean!
)
Whether the item is archived.
project
(ProjectV2!
)
The project that contains this item.
type
(ProjectV2ItemType!
)
The type of the item.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
ProjectV2ItemEdgeAn edge in a connection.
Fields forProjectV2ItemEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(ProjectV2Item
)
The item at the end of the edge.
ProjectV2ItemFieldDateValueThe value of a date field in a Project item.
ProjectV2ItemFieldDateValue
Implements
Fields for ProjectV2ItemFieldDateValue
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor
)
The actor who created the item.
databaseId
(Int
)
Identifies the primary key from the database.
date
(Date
)
Date value for the field.
field
(ProjectV2FieldConfiguration!
)
The project field that contains this value.
id
(ID!
)
The Node ID of the ProjectV2ItemFieldDateValue object.
item
(ProjectV2Item!
)
The project item that contains this value.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
ProjectV2ItemFieldIterationValueThe value of an iteration field in a Project item.
ProjectV2ItemFieldIterationValue
Implements
Fields for ProjectV2ItemFieldIterationValue
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor
)
The actor who created the item.
databaseId
(Int
)
Identifies the primary key from the database.
duration
(Int!
)
The duration of the iteration in days.
field
(ProjectV2FieldConfiguration!
)
The project field that contains this value.
id
(ID!
)
The Node ID of the ProjectV2ItemFieldIterationValue object.
item
(ProjectV2Item!
)
The project item that contains this value.
iterationId
(String!
)
The ID of the iteration.
startDate
(Date!
)
The start date of the iteration.
title
(String!
)
The title of the iteration.
titleHTML
(String!
)
The title of the iteration, with HTML.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
ProjectV2ItemFieldLabelValueThe value of the labels field in a Project item.
Fields forProjectV2ItemFieldLabelValue
Name Description
field
(ProjectV2FieldConfiguration!
)
The field that contains this value.
labels
(LabelConnection
)
Labels value of a field.
Arguments for labels
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
The value of a number field in a Project item.
ProjectV2ItemFieldNumberValue
Implements
Fields for ProjectV2ItemFieldNumberValue
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor
)
The actor who created the item.
databaseId
(Int
)
Identifies the primary key from the database.
field
(ProjectV2FieldConfiguration!
)
The project field that contains this value.
id
(ID!
)
The Node ID of the ProjectV2ItemFieldNumberValue object.
item
(ProjectV2Item!
)
The project item that contains this value.
number
(Float
)
Number as a float(8).
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
ProjectV2ItemFieldPullRequestValueThe value of a pull request field in a Project item.
Fields forProjectV2ItemFieldPullRequestValue
Name Description
field
(ProjectV2FieldConfiguration!
)
The field that contains this value.
pullRequests
(PullRequestConnection
)
The pull requests for this field.
Arguments for pullRequests
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(PullRequestOrder
)
Ordering options for pull requests.
The value of a reviewers field in a Project item.
Fields forProjectV2ItemFieldReviewerValue
Name Description
field
(ProjectV2FieldConfiguration!
)
The field that contains this value.
reviewers
(RequestedReviewerConnection
)
The reviewers for this field.
Arguments for reviewers
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
The value of a single select field in a Project item.
ProjectV2ItemFieldSingleSelectValue
Implements
Fields for ProjectV2ItemFieldSingleSelectValue
Name Description
color
(ProjectV2SingleSelectFieldOptionColor!
)
The color applied to the selected single-select option.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor
)
The actor who created the item.
databaseId
(Int
)
Identifies the primary key from the database.
description
(String
)
A plain-text description of the selected single-select option, such as what the option means.
descriptionHTML
(String
)
The description of the selected single-select option, including HTML tags.
field
(ProjectV2FieldConfiguration!
)
The project field that contains this value.
id
(ID!
)
The Node ID of the ProjectV2ItemFieldSingleSelectValue object.
item
(ProjectV2Item!
)
The project item that contains this value.
name
(String
)
The name of the selected single select option.
nameHTML
(String
)
The html name of the selected single select option.
optionId
(String
)
The id of the selected single select option.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
ProjectV2ItemFieldTextValueThe value of a text field in a Project item.
ProjectV2ItemFieldTextValue
Implements
Fields for ProjectV2ItemFieldTextValue
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor
)
The actor who created the item.
databaseId
(Int
)
Identifies the primary key from the database.
field
(ProjectV2FieldConfiguration!
)
The project field that contains this value.
id
(ID!
)
The Node ID of the ProjectV2ItemFieldTextValue object.
item
(ProjectV2Item!
)
The project item that contains this value.
text
(String
)
Text value of a field.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
ProjectV2ItemFieldUserValueThe value of a user field in a Project item.
Fields forProjectV2ItemFieldUserValue
Name Description
field
(ProjectV2FieldConfiguration!
)
The field that contains this value.
users
(UserConnection
)
The users for this field.
Arguments for users
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
Iteration field iteration settings for a project.
Fields forProjectV2IterationFieldIteration
Name Description
duration
(Int!
)
The iteration's duration in days.
id
(String!
)
The iteration's ID.
startDate
(Date!
)
The iteration's start date.
title
(String!
)
The iteration's title.
titleHTML
(String!
)
The iteration's html title.
ProjectV2SingleSelectFieldA single select field inside a project.
ProjectV2SingleSelectField
Implements
Fields for ProjectV2SingleSelectField
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
dataType
(ProjectV2FieldType!
)
The field's type.
databaseId
(Int
)
Identifies the primary key from the database.
id
(ID!
)
The Node ID of the ProjectV2SingleSelectField object.
name
(String!
)
The project field's name.
options
([ProjectV2SingleSelectFieldOption!]!
)
Options for the single select field.
Arguments for options
names
([String!]
)
Filter returned options to only those matching these names, case insensitive.
project
(ProjectV2!
)
The project that contains this field.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
ProjectV2SortByRepresents a sort by field and direction.
Fields forProjectV2SortBy
Name Description
direction
(OrderDirection!
)
The direction of the sorting. Possible values are ASC and DESC.
field
(ProjectV2Field!
)
The field by which items are sorted.
ProjectV2StatusUpdateA status update within a project.
ProjectV2StatusUpdate
Implements
Fields for ProjectV2StatusUpdate
Name Description
body
(String
)
The body of the status update.
bodyHTML
(HTML
)
The body of the status update rendered to HTML.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor
)
The actor who created the status update.
databaseId
(Int
)
Identifies the primary key from the database.
Warning
databaseId
is deprecated.
databaseId
will be removed because it does not support 64-bit signed integer identifiers. Use fullDatabaseId
instead. Removal on 2025-04-01 UTC.
fullDatabaseId
(BigInt
)
Identifies the primary key from the database as a BigInt.
id
(ID!
)
The Node ID of the ProjectV2StatusUpdate object.
project
(ProjectV2!
)
The project that contains this status update.
startDate
(Date
)
The start date of the status update.
status
(ProjectV2StatusUpdateStatus
)
The status of the status update.
targetDate
(Date
)
The target date of the status update.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
ProjectV2ViewA view within a ProjectV2.
ProjectV2View
Implements
Fields for ProjectV2View
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
Warning
databaseId
is deprecated.
databaseId
will be removed because it does not support 64-bit signed integer identifiers. Use fullDatabaseId
instead. Removal on 2025-04-01 UTC.
fields
(ProjectV2FieldConfigurationConnection
)
The view's visible fields.
Arguments for fields
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectV2FieldOrder
)
Ordering options for the project v2 fields returned from the connection.
filter
(String
)
The project view's filter.
fullDatabaseId
(BigInt
)
Identifies the primary key from the database as a BigInt.
groupBy
(ProjectV2FieldConnection
)
The view's group-by field.
Warning
groupBy
is deprecated.
The ProjectV2View#order_by
API is deprecated in favour of the more capable ProjectV2View#group_by_field
API. Check out the ProjectV2View#group_by_fields
API as an example for the more capable alternative. Removal on 2023-04-01 UTC.
Arguments for groupBy
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectV2FieldOrder
)
Ordering options for the project v2 fields returned from the connection.
groupByFields
(ProjectV2FieldConfigurationConnection
)
The view's group-by field.
Arguments for groupByFields
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectV2FieldOrder
)
Ordering options for the project v2 fields returned from the connection.
id
(ID!
)
The Node ID of the ProjectV2View object.
layout
(ProjectV2ViewLayout!
)
The project view's layout.
name
(String!
)
The project view's name.
number
(Int!
)
The project view's number.
project
(ProjectV2!
)
The project that contains this view.
sortBy
(ProjectV2SortByConnection
)
The view's sort-by config.
Warning
sortBy
is deprecated.
The ProjectV2View#sort_by
API is deprecated in favour of the more capable ProjectV2View#sort_by_fields
API. Check out the ProjectV2View#sort_by_fields
API as an example for the more capable alternative. Removal on 2023-04-01 UTC.
Arguments for sortBy
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
sortByFields
(ProjectV2SortByFieldConnection
)
The view's sort-by config.
Arguments for sortByFields
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
verticalGroupBy
(ProjectV2FieldConnection
)
The view's vertical-group-by field.
Warning
verticalGroupBy
is deprecated.
The ProjectV2View#vertical_group_by
API is deprecated in favour of the more capable ProjectV2View#vertical_group_by_fields
API. Check out the ProjectV2View#vertical_group_by_fields
API as an example for the more capable alternative. Removal on 2023-04-01 UTC.
Arguments for verticalGroupBy
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectV2FieldOrder
)
Ordering options for the project v2 fields returned from the connection.
verticalGroupByFields
(ProjectV2FieldConfigurationConnection
)
The view's vertical-group-by field.
Arguments for verticalGroupByFields
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectV2FieldOrder
)
Ordering options for the project v2 fields returned from the connection.
visibleFields
(ProjectV2FieldConnection
)
The view's visible fields.
Warning
visibleFields
is deprecated.
The ProjectV2View#visibleFields
API is deprecated in favour of the more capable ProjectV2View#fields
API. Check out the ProjectV2View#fields
API as an example for the more capable alternative. Removal on 2023-01-01 UTC.
Arguments for visibleFields
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectV2FieldOrder
)
Ordering options for the project v2 fields returned from the connection.
An edge in a connection.
Fields forProjectV2ViewEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(ProjectV2View
)
The item at the end of the edge.
ProjectV2WorkflowA workflow inside a project.
ProjectV2Workflow
Implements
Fields for ProjectV2Workflow
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
Warning
databaseId
is deprecated.
databaseId
will be removed because it does not support 64-bit signed integer identifiers. Use fullDatabaseId
instead. Removal on 2025-04-01 UTC.
enabled
(Boolean!
)
Whether the workflow is enabled.
fullDatabaseId
(BigInt
)
Identifies the primary key from the database as a BigInt.
id
(ID!
)
The Node ID of the ProjectV2Workflow object.
name
(String!
)
The name of the workflow.
number
(Int!
)
The number of the workflow.
project
(ProjectV2!
)
The project that contains this workflow.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
PropertyTargetDefinitionA property that must match.
Fields forPropertyTargetDefinition
Name Description
name
(String!
)
The name of the property.
propertyValues
([String!]!
)
The values to match for.
source
(String
)
The source of the property. Choosecustom
or 'system'. Defaults to 'custom' if not specified.
A user's public key.
PublicKey
Implements
Fields for PublicKey
Name Description
accessedAt
(DateTime
)
The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.
createdAt
(DateTime
)
Identifies the date and time when the key was created. Keys created before March 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.
fingerprint
(String!
)
The fingerprint for this PublicKey.
id
(ID!
)
The Node ID of the PublicKey object.
isReadOnly
(Boolean
)
Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.
key
(String!
)
The public key string.
updatedAt
(DateTime
)
Identifies the date and time when the key was updated. Keys created before March 5th, 2014 may have inaccurate values. Values will be null for keys not owned by the user.
PublicKeyConnectionThe connection type for PublicKey.
Fields forPublicKeyConnection
Name Description
edges
([PublicKeyEdge]
)
A list of edges.
nodes
([PublicKey]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
PublicKeyEdgeAn edge in a connection.
Fields forPublicKeyEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(PublicKey
)
The item at the end of the edge.
PullRequestA repository pull request.
PullRequest
Implements
Assignable
Closable
Comment
Labelable
Lockable
Node
ProjectV2Owner
Reactable
RepositoryNode
Subscribable
UniformResourceLocatable
Updatable
UpdatableComment
PullRequest
Name Description
activeLockReason
(LockReason
)
Reason that the conversation was locked.
additions
(Int!
)
The number of additions in this pull request.
assignedActors
(AssigneeConnection!
)
A list of actors assigned to this object.
Arguments for assignedActors
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
assignees
(UserConnection!
)
A list of Users assigned to this object.
Arguments for assignees
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
author
(Actor
)
The actor who authored the comment.
authorAssociation
(CommentAuthorAssociation!
)
Author's association with the subject of the comment.
autoMergeRequest
(AutoMergeRequest
)
Returns the auto-merge request object if one exists for this pull request.
baseRef
(Ref
)
Identifies the base Ref associated with the pull request.
baseRefName
(String!
)
Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.
baseRefOid
(GitObjectID!
)
Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.
baseRepository
(Repository
)
The repository associated with this pull request's base Ref.
body
(String!
)
The body as Markdown.
bodyHTML
(HTML!
)
The body rendered to HTML.
bodyText
(String!
)
The body rendered to text.
canBeRebased
(Boolean!
)
Whether or not the pull request is rebaseable.
changedFiles
(Int!
)
The number of changed files in this pull request.
checksResourcePath
(URI!
)
The HTTP path for the checks of this pull request.
checksUrl
(URI!
)
The HTTP URL for the checks of this pull request.
closed
(Boolean!
)
true
if the pull request is closed.
closedAt
(DateTime
)
Identifies the date and time when the object was closed.
closingIssuesReferences
(IssueConnection
)
List of issues that may be closed by this pull request.
Arguments for closingIssuesReferences
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueOrder
)
Ordering options for issues returned from the connection.
userLinkedOnly
(Boolean
)
Return only manually linked Issues.
The default value is false
.
comments
(IssueCommentConnection!
)
A list of comments associated with the pull request.
Arguments for comments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueCommentOrder
)
Ordering options for issue comments returned from the connection.
commits
(PullRequestCommitConnection!
)
A list of commits present in this pull request's head branch not present in the base branch.
Arguments for commits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
createdViaEmail
(Boolean!
)
Check if this comment was created via an email reply.
databaseId
(Int
)
Identifies the primary key from the database.
Warning
databaseId
is deprecated.
databaseId
will be removed because it does not support 64-bit signed integer identifiers. Use fullDatabaseId
instead. Removal on 2024-07-01 UTC.
deletions
(Int!
)
The number of deletions in this pull request.
editor
(Actor
)
The actor who edited this pull request's body.
files
(PullRequestChangedFileConnection
)
Lists the files changed within this pull request.
Arguments for files
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
fullDatabaseId
(BigInt
)
Identifies the primary key from the database as a BigInt.
headRef
(Ref
)
Identifies the head Ref associated with the pull request.
headRefName
(String!
)
Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.
headRefOid
(GitObjectID!
)
Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.
headRepository
(Repository
)
The repository associated with this pull request's head Ref.
headRepositoryOwner
(RepositoryOwner
)
The owner of the repository associated with this pull request's head Ref.
hovercard
(Hovercard!
)
The hovercard information for this issue.
Arguments for hovercard
includeNotificationContexts
(Boolean
)
Whether or not to include notification contexts.
The default value is true
.
id
(ID!
)
The Node ID of the PullRequest object.
includesCreatedEdit
(Boolean!
)
Check if this comment was edited and includes an edit with the creation data.
isCrossRepository
(Boolean!
)
The head and base repositories are different.
isDraft
(Boolean!
)
Identifies if the pull request is a draft.
isInMergeQueue
(Boolean!
)
Indicates whether the pull request is in a merge queue.
isMergeQueueEnabled
(Boolean!
)
Indicates whether the pull request's base ref has a merge queue enabled.
isReadByViewer
(Boolean
)
Is this pull request read by the viewer.
labels
(LabelConnection
)
A list of labels associated with the object.
Arguments for labels
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(LabelOrder
)
Ordering options for labels returned from the connection.
lastEditedAt
(DateTime
)
The moment the editor made the last edit.
latestOpinionatedReviews
(PullRequestReviewConnection
)
A list of latest reviews per user associated with the pull request.
Arguments for latestOpinionatedReviews
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
writersOnly
(Boolean
)
Only return reviews from user who have write access to the repository.
The default value is false
.
latestReviews
(PullRequestReviewConnection
)
A list of latest reviews per user associated with the pull request that are not also pending review.
Arguments for latestReviews
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
locked
(Boolean!
)
true
if the pull request is locked.
maintainerCanModify
(Boolean!
)
Indicates whether maintainers can modify the pull request.
mergeCommit
(Commit
)
The commit that was created when this pull request was merged.
mergeQueue
(MergeQueue
)
The merge queue for the pull request's base branch.
mergeQueueEntry
(MergeQueueEntry
)
The merge queue entry of the pull request in the base branch's merge queue.
mergeStateStatus
(MergeStateStatus!
)
Detailed information about the current pull request merge state status.
mergeable
(MergeableState!
)
Whether or not the pull request can be merged based on the existence of merge conflicts.
merged
(Boolean!
)
Whether or not the pull request was merged.
mergedAt
(DateTime
)
The date and time that the pull request was merged.
mergedBy
(Actor
)
The actor who merged the pull request.
milestone
(Milestone
)
Identifies the milestone associated with the pull request.
number
(Int!
)
Identifies the pull request number.
participants
(UserConnection!
)
A list of Users that are participating in the Pull Request conversation.
Arguments for participants
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
permalink
(URI!
)
The permalink to the pull request.
potentialMergeCommit
(Commit
)
The commit that GitHub automatically generated to test if this pull request could be merged. This field will not return a value if the pull request is merged, or if the test merge commit is still being generated. See the mergeable
field for more details on the mergeability of the pull request.
projectCards
(ProjectCardConnection!
)
List of project cards associated with this pull request.
Warning
projectCards
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
Arguments for projectCards
after
(String
)
Returns the elements in the list that come after the specified cursor.
archivedStates
([ProjectCardArchivedState]
)
A list of archived states to filter the cards by.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
projectItems
(ProjectV2ItemConnection!
)
List of project items associated with this pull request.
Arguments for projectItems
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
includeArchived
(Boolean
)
Include archived items.
The default value is true
.
last
(Int
)
Returns the last n elements from the list.
projectV2
(ProjectV2
)
Find a project by number.
Arguments for projectV2
number
(Int!
)
The project number.
projectsV2
(ProjectV2Connection!
)
A list of projects under the owner.
Arguments for projectsV2
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
minPermissionLevel
(ProjectV2PermissionLevel
)
Filter projects based on user role.
The default value is READ
.
orderBy
(ProjectV2Order
)
How to order the returned projects.
query
(String
)
A project to search for under the owner.
publishedAt
(DateTime
)
Identifies when the comment was published at.
reactionGroups
([ReactionGroup!]
)
A list of reactions grouped by content left on the subject.
reactions
(ReactionConnection!
)
A list of Reactions left on the Issue.
Arguments for reactions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
content
(ReactionContent
)
Allows filtering Reactions by emoji.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ReactionOrder
)
Allows specifying the order in which reactions are returned.
repository
(Repository!
)
The repository associated with this node.
resourcePath
(URI!
)
The HTTP path for this pull request.
revertResourcePath
(URI!
)
The HTTP path for reverting this pull request.
revertUrl
(URI!
)
The HTTP URL for reverting this pull request.
reviewDecision
(PullRequestReviewDecision
)
The current status of this pull request with respect to code review.
reviewRequests
(ReviewRequestConnection
)
A list of review requests associated with the pull request.
Arguments for reviewRequests
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
reviewThreads
(PullRequestReviewThreadConnection!
)
The list of all review threads for this pull request.
Arguments for reviewThreads
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
reviews
(PullRequestReviewConnection
)
A list of reviews associated with the pull request.
Arguments for reviews
after
(String
)
Returns the elements in the list that come after the specified cursor.
author
(String
)
Filter by author of the review.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
states
([PullRequestReviewState!]
)
A list of states to filter the reviews.
state
(PullRequestState!
)
Identifies the state of the pull request.
statusCheckRollup
(StatusCheckRollup
)
Check and Status rollup information for the PR's head ref.
suggestedActors
(AssigneeConnection!
)
A list of suggested actors to assign to this object.
Arguments for suggestedActors
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
query
(String
)
If provided, searches users by login or profile name.
suggestedReviewers
([SuggestedReviewer]!
)
A list of reviewer suggestions based on commit history and past review comments.
timeline
(PullRequestTimelineConnection!
)
A list of events, comments, commits, etc. associated with the pull request.
Warning
timeline
is deprecated.
timeline
will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.
Arguments for timeline
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
since
(DateTime
)
Allows filtering timeline events by a since
timestamp.
timelineItems
(PullRequestTimelineItemsConnection!
)
A list of events, comments, commits, etc. associated with the pull request.
Arguments for timelineItems
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
itemTypes
([PullRequestTimelineItemsItemType!]
)
Filter timeline items by type.
last
(Int
)
Returns the last n elements from the list.
since
(DateTime
)
Filter timeline items by a since
timestamp.
skip
(Int
)
Skips the first n elements in the list.
title
(String!
)
Identifies the pull request title.
titleHTML
(HTML!
)
Identifies the pull request title rendered to HTML.
totalCommentsCount
(Int
)
Returns a count of how many comments this pull request has received.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this pull request.
userContentEdits
(UserContentEditConnection
)
A list of edits to this content.
Arguments for userContentEdits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
viewerCanApplySuggestion
(Boolean!
)
Whether or not the viewer can apply suggestion.
viewerCanClose
(Boolean!
)
Indicates if the object can be closed by the viewer.
viewerCanDeleteHeadRef
(Boolean!
)
Check if the viewer can restore the deleted head ref.
viewerCanDisableAutoMerge
(Boolean!
)
Whether or not the viewer can disable auto-merge.
viewerCanEditFiles
(Boolean!
)
Can the viewer edit files within this pull request.
viewerCanEnableAutoMerge
(Boolean!
)
Whether or not the viewer can enable auto-merge.
viewerCanLabel
(Boolean!
)
Indicates if the viewer can edit labels for this object.
viewerCanMergeAsAdmin
(Boolean!
)
Indicates whether the viewer can bypass branch protections and merge the pull request immediately.
viewerCanReact
(Boolean!
)
Can user react to this subject.
viewerCanReopen
(Boolean!
)
Indicates if the object can be reopened by the viewer.
viewerCanSubscribe
(Boolean!
)
Check if the viewer is able to change their subscription status for the repository.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
viewerCanUpdateBranch
(Boolean!
)
Whether or not the viewer can update the head ref of this PR, by merging or rebasing the base ref. If the head ref is up to date or unable to be updated by this user, this will return false.
viewerCannotUpdateReasons
([CommentCannotUpdateReason!]!
)
Reasons why the current viewer can not update this comment.
viewerDidAuthor
(Boolean!
)
Did the viewer author this comment.
viewerLatestReview
(PullRequestReview
)
The latest review given from the viewer.
viewerLatestReviewRequest
(ReviewRequest
)
The person who has requested the viewer for review on this pull request.
viewerMergeBodyText
(String!
)
The merge body text for the viewer and method.
Arguments for viewerMergeBodyText
mergeType
(PullRequestMergeMethod
)
The merge method for the message.
viewerMergeHeadlineText
(String!
)
The merge headline text for the viewer and method.
Arguments for viewerMergeHeadlineText
mergeType
(PullRequestMergeMethod
)
The merge method for the message.
viewerSubscription
(SubscriptionState
)
Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
PullRequestChangedFileA file changed in a pull request.
Fields forPullRequestChangedFile
Name Description
additions
(Int!
)
The number of additions to the file.
changeType
(PatchStatus!
)
How the file was changed in this PullRequest.
deletions
(Int!
)
The number of deletions to the file.
path
(String!
)
The path of the file.
viewerViewedState
(FileViewedState!
)
The state of the file for the viewer.
PullRequestCommitRepresents a Git commit part of a pull request.
PullRequestCommit
Implements
Fields for PullRequestCommit
Name Description
commit
(Commit!
)
The Git commit object.
id
(ID!
)
The Node ID of the PullRequestCommit object.
pullRequest
(PullRequest!
)
The pull request this commit belongs to.
resourcePath
(URI!
)
The HTTP path for this pull request commit.
url
(URI!
)
The HTTP URL for this pull request commit.
Represents a commit comment thread part of a pull request.
PullRequestCommitCommentThread
Implements
Fields for PullRequestCommitCommentThread
Name Description
comments
(CommitCommentConnection!
)
The comments that exist in this thread.
Arguments for comments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
commit
(Commit!
)
The commit the comments were made on.
id
(ID!
)
The Node ID of the PullRequestCommitCommentThread object.
path
(String
)
The file the comments were made on.
position
(Int
)
The position in the diff for the commit that the comment was made on.
pullRequest
(PullRequest!
)
The pull request this commit comment thread belongs to.
repository
(Repository!
)
The repository associated with this node.
PullRequestContributionsByRepositoryThis aggregates pull requests opened by a user within one repository.
Fields forPullRequestContributionsByRepository
Name Description
contributions
(CreatedPullRequestContributionConnection!
)
The pull request contributions.
Arguments for contributions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ContributionOrder
)
Ordering options for contributions returned from the connection.
repository
(Repository!
)
The repository in which the pull requests were opened.
PullRequestEdgeAn edge in a connection.
Fields forPullRequestEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(PullRequest
)
The item at the end of the edge.
PullRequestParametersRequire all commits be made to a non-target branch and submitted via a pull request before they can be merged.
Fields forPullRequestParameters
Name Description
allowedMergeMethods
([PullRequestAllowedMergeMethods!]
)
Array of allowed merge methods. Allowed values include merge
, squash
, and rebase
. At least one option must be enabled.
automaticCopilotCodeReviewEnabled
(Boolean!
)
Automatically request review from Copilot for new pull requests, if the author has access to Copilot code review.
dismissStaleReviewsOnPush
(Boolean!
)
New, reviewable commits pushed will dismiss previous pull request review approvals.
requireCodeOwnerReview
(Boolean!
)
Require an approving review in pull requests that modify files that have a designated code owner.
requireLastPushApproval
(Boolean!
)
Whether the most recent reviewable push must be approved by someone other than the person who pushed it.
requiredApprovingReviewCount
(Int!
)
The number of approving reviews that are required before a pull request can be merged.
requiredReviewThreadResolution
(Boolean!
)
All conversations on code must be resolved before a pull request can be merged.
PullRequestReviewA review object for a given pull request.
PullRequestReview
Implements
Fields for PullRequestReview
Name Description
author
(Actor
)
The actor who authored the comment.
authorAssociation
(CommentAuthorAssociation!
)
Author's association with the subject of the comment.
authorCanPushToRepository
(Boolean!
)
Indicates whether the author of this review has push access to the repository.
body
(String!
)
Identifies the pull request review body.
bodyHTML
(HTML!
)
The body rendered to HTML.
bodyText
(String!
)
The body of this review rendered as plain text.
comments
(PullRequestReviewCommentConnection!
)
A list of review comments for the current pull request review.
Arguments for comments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
commit
(Commit
)
Identifies the commit associated with this pull request review.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
createdViaEmail
(Boolean!
)
Check if this comment was created via an email reply.
databaseId
(Int
)
Identifies the primary key from the database.
Warning
databaseId
is deprecated.
databaseId
will be removed because it does not support 64-bit signed integer identifiers. Use fullDatabaseId
instead. Removal on 2024-07-01 UTC.
editor
(Actor
)
The actor who edited the comment.
fullDatabaseId
(BigInt
)
Identifies the primary key from the database as a BigInt.
id
(ID!
)
The Node ID of the PullRequestReview object.
includesCreatedEdit
(Boolean!
)
Check if this comment was edited and includes an edit with the creation data.
isMinimized
(Boolean!
)
Returns whether or not a comment has been minimized.
lastEditedAt
(DateTime
)
The moment the editor made the last edit.
minimizedReason
(String
)
Returns why the comment was minimized. One of abuse
, off-topic
, outdated
, resolved
, duplicate
and spam
. Note that the case and formatting of these values differs from the inputs to the MinimizeComment
mutation.
onBehalfOf
(TeamConnection!
)
A list of teams that this review was made on behalf of.
Arguments for onBehalfOf
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
publishedAt
(DateTime
)
Identifies when the comment was published at.
pullRequest
(PullRequest!
)
Identifies the pull request associated with this pull request review.
reactionGroups
([ReactionGroup!]
)
A list of reactions grouped by content left on the subject.
reactions
(ReactionConnection!
)
A list of Reactions left on the Issue.
Arguments for reactions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
content
(ReactionContent
)
Allows filtering Reactions by emoji.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ReactionOrder
)
Allows specifying the order in which reactions are returned.
repository
(Repository!
)
The repository associated with this node.
resourcePath
(URI!
)
The HTTP path permalink for this PullRequestReview.
state
(PullRequestReviewState!
)
Identifies the current state of the pull request review.
submittedAt
(DateTime
)
Identifies when the Pull Request Review was submitted.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL permalink for this PullRequestReview.
userContentEdits
(UserContentEditConnection
)
A list of edits to this content.
Arguments for userContentEdits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
viewerCanDelete
(Boolean!
)
Check if the current viewer can delete this object.
viewerCanMinimize
(Boolean!
)
Check if the current viewer can minimize this object.
viewerCanReact
(Boolean!
)
Can user react to this subject.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
viewerCannotUpdateReasons
([CommentCannotUpdateReason!]!
)
Reasons why the current viewer can not update this comment.
viewerDidAuthor
(Boolean!
)
Did the viewer author this comment.
A review comment associated with a given repository pull request.
PullRequestReviewComment
Implements
Fields for PullRequestReviewComment
Name Description
author
(Actor
)
The actor who authored the comment.
authorAssociation
(CommentAuthorAssociation!
)
Author's association with the subject of the comment.
body
(String!
)
The comment body of this review comment.
bodyHTML
(HTML!
)
The body rendered to HTML.
bodyText
(String!
)
The comment body of this review comment rendered as plain text.
commit
(Commit
)
Identifies the commit associated with the comment.
createdAt
(DateTime!
)
Identifies when the comment was created.
createdViaEmail
(Boolean!
)
Check if this comment was created via an email reply.
databaseId
(Int
)
Identifies the primary key from the database.
Warning
databaseId
is deprecated.
databaseId
will be removed because it does not support 64-bit signed integer identifiers. Use fullDatabaseId
instead. Removal on 2024-07-01 UTC.
diffHunk
(String!
)
The diff hunk to which the comment applies.
draftedAt
(DateTime!
)
Identifies when the comment was created in a draft state.
editor
(Actor
)
The actor who edited the comment.
fullDatabaseId
(BigInt
)
Identifies the primary key from the database as a BigInt.
id
(ID!
)
The Node ID of the PullRequestReviewComment object.
includesCreatedEdit
(Boolean!
)
Check if this comment was edited and includes an edit with the creation data.
isMinimized
(Boolean!
)
Returns whether or not a comment has been minimized.
lastEditedAt
(DateTime
)
The moment the editor made the last edit.
line
(Int
)
The end line number on the file to which the comment applies.
minimizedReason
(String
)
Returns why the comment was minimized. One of abuse
, off-topic
, outdated
, resolved
, duplicate
and spam
. Note that the case and formatting of these values differs from the inputs to the MinimizeComment
mutation.
originalCommit
(Commit
)
Identifies the original commit associated with the comment.
originalLine
(Int
)
The end line number on the file to which the comment applied when it was first created.
originalPosition
(Int!
)
The original line index in the diff to which the comment applies.
Warning
originalPosition
is deprecated.
We are phasing out diff-relative positioning for PR comments Removal on 2023-10-01 UTC.
originalStartLine
(Int
)
The start line number on the file to which the comment applied when it was first created.
outdated
(Boolean!
)
Identifies when the comment body is outdated.
path
(String!
)
The path to which the comment applies.
position
(Int
)
The line index in the diff to which the comment applies.
Warning
position
is deprecated.
We are phasing out diff-relative positioning for PR comments Use the line
and startLine
fields instead, which are file line numbers instead of diff line numbers Removal on 2023-10-01 UTC.
publishedAt
(DateTime
)
Identifies when the comment was published at.
pullRequest
(PullRequest!
)
The pull request associated with this review comment.
pullRequestReview
(PullRequestReview
)
The pull request review associated with this review comment.
reactionGroups
([ReactionGroup!]
)
A list of reactions grouped by content left on the subject.
reactions
(ReactionConnection!
)
A list of Reactions left on the Issue.
Arguments for reactions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
content
(ReactionContent
)
Allows filtering Reactions by emoji.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ReactionOrder
)
Allows specifying the order in which reactions are returned.
replyTo
(PullRequestReviewComment
)
The comment this is a reply to.
repository
(Repository!
)
The repository associated with this node.
resourcePath
(URI!
)
The HTTP path permalink for this review comment.
startLine
(Int
)
The start line number on the file to which the comment applies.
state
(PullRequestReviewCommentState!
)
Identifies the state of the comment.
subjectType
(PullRequestReviewThreadSubjectType!
)
The level at which the comments in the corresponding thread are targeted, can be a diff line or a file.
updatedAt
(DateTime!
)
Identifies when the comment was last updated.
url
(URI!
)
The HTTP URL permalink for this review comment.
userContentEdits
(UserContentEditConnection
)
A list of edits to this content.
Arguments for userContentEdits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
viewerCanDelete
(Boolean!
)
Check if the current viewer can delete this object.
viewerCanMinimize
(Boolean!
)
Check if the current viewer can minimize this object.
viewerCanReact
(Boolean!
)
Can user react to this subject.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
viewerCannotUpdateReasons
([CommentCannotUpdateReason!]!
)
Reasons why the current viewer can not update this comment.
viewerDidAuthor
(Boolean!
)
Did the viewer author this comment.
The connection type for PullRequestReviewComment.
Fields forPullRequestReviewCommentConnection
An edge in a connection.
Fields forPullRequestReviewCommentEdge
PullRequestReviewContributionsByRepository
This aggregates pull request reviews made by a user within one repository.
Fields forPullRequestReviewContributionsByRepository
Name Description
contributions
(CreatedPullRequestReviewContributionConnection!
)
The pull request review contributions.
Arguments for contributions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ContributionOrder
)
Ordering options for contributions returned from the connection.
repository
(Repository!
)
The repository in which the pull request reviews were made.
PullRequestReviewThreadA threaded list of comments for a given pull request.
PullRequestReviewThread
Implements
Fields for PullRequestReviewThread
Name Description
comments
(PullRequestReviewCommentConnection!
)
A list of pull request comments associated with the thread.
Arguments for comments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
skip
(Int
)
Skips the first n elements in the list.
diffSide
(DiffSide!
)
The side of the diff on which this thread was placed.
id
(ID!
)
The Node ID of the PullRequestReviewThread object.
isCollapsed
(Boolean!
)
Whether or not the thread has been collapsed (resolved).
isOutdated
(Boolean!
)
Indicates whether this thread was outdated by newer changes.
isResolved
(Boolean!
)
Whether this thread has been resolved.
line
(Int
)
The line in the file to which this thread refers.
originalLine
(Int
)
The original line in the file to which this thread refers.
originalStartLine
(Int
)
The original start line in the file to which this thread refers (multi-line only).
path
(String!
)
Identifies the file path of this thread.
pullRequest
(PullRequest!
)
Identifies the pull request associated with this thread.
repository
(Repository!
)
Identifies the repository associated with this thread.
resolvedBy
(User
)
The user who resolved this thread.
startDiffSide
(DiffSide
)
The side of the diff that the first line of the thread starts on (multi-line only).
startLine
(Int
)
The start line in the file to which this thread refers (multi-line only).
subjectType
(PullRequestReviewThreadSubjectType!
)
The level at which the comments in the corresponding thread are targeted, can be a diff line or a file.
viewerCanReply
(Boolean!
)
Indicates whether the current viewer can reply to this thread.
viewerCanResolve
(Boolean!
)
Whether or not the viewer can resolve this thread.
viewerCanUnresolve
(Boolean!
)
Whether or not the viewer can unresolve this thread.
PullRequestRevisionMarkerRepresents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.
Fields forPullRequestRevisionMarker
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
lastSeenCommit
(Commit!
)
The last commit the viewer has seen.
pullRequest
(PullRequest!
)
The pull request to which the marker belongs.
PullRequestTemplateA repository pull request template.
Fields forPullRequestTemplate
Name Description
body
(String
)
The body of the template.
filename
(String
)
The filename of the template.
repository
(Repository!
)
The repository the template belongs to.
PullRequestThreadA threaded list of comments for a given pull request.
PullRequestThread
Implements
Fields for PullRequestThread
Name Description
comments
(PullRequestReviewCommentConnection!
)
A list of pull request comments associated with the thread.
Arguments for comments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
skip
(Int
)
Skips the first n elements in the list.
diffSide
(DiffSide!
)
The side of the diff on which this thread was placed.
id
(ID!
)
The Node ID of the PullRequestThread object.
isCollapsed
(Boolean!
)
Whether or not the thread has been collapsed (resolved).
isOutdated
(Boolean!
)
Indicates whether this thread was outdated by newer changes.
isResolved
(Boolean!
)
Whether this thread has been resolved.
line
(Int
)
The line in the file to which this thread refers.
path
(String!
)
Identifies the file path of this thread.
pullRequest
(PullRequest!
)
Identifies the pull request associated with this thread.
repository
(Repository!
)
Identifies the repository associated with this thread.
resolvedBy
(User
)
The user who resolved this thread.
startDiffSide
(DiffSide
)
The side of the diff that the first line of the thread starts on (multi-line only).
startLine
(Int
)
The line of the first file diff in the thread.
subjectType
(PullRequestReviewThreadSubjectType!
)
The level at which the comments in the corresponding thread are targeted, can be a diff line or a file.
viewerCanReply
(Boolean!
)
Indicates whether the current viewer can reply to this thread.
viewerCanResolve
(Boolean!
)
Whether or not the viewer can resolve this thread.
viewerCanUnresolve
(Boolean!
)
Whether or not the viewer can unresolve this thread.
PullRequestTimelineItemsConnectionThe connection type for PullRequestTimelineItems.
Fields forPullRequestTimelineItemsConnection
Name Description
edges
([PullRequestTimelineItemsEdge]
)
A list of edges.
filteredCount
(Int!
)
Identifies the count of items after applying before
and after
filters.
nodes
([PullRequestTimelineItems]
)
A list of nodes.
pageCount
(Int!
)
Identifies the count of items after applying before
/after
filters and first
/last
/skip
slicing.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
updatedAt
(DateTime!
)
Identifies the date and time when the timeline was last updated.
PushA Git push.
Push
Implements
Fields for Push
Name Description
id
(ID!
)
The Node ID of the Push object.
nextSha
(GitObjectID
)
The SHA after the push.
permalink
(URI!
)
The permalink for this push.
previousSha
(GitObjectID
)
The SHA before the push.
pusher
(Actor!
)
The actor who pushed.
repository
(Repository!
)
The repository that was pushed to.
PushAllowanceA team, user, or app who has the ability to push to a protected branch.
PushAllowance
Implements
Fields for PushAllowance
Name Description
actor
(PushAllowanceActor
)
The actor that can push.
branchProtectionRule
(BranchProtectionRule
)
Identifies the branch protection rule associated with the allowed user, team, or app.
id
(ID!
)
The Node ID of the PushAllowance object.
PushAllowanceEdgeAn edge in a connection.
Fields forPushAllowanceEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(PushAllowance
)
The item at the end of the edge.
RateLimitRepresents the client's rate limit.
Fields forRateLimit
Name Description
cost
(Int!
)
The point cost for the current query counting against the rate limit.
limit
(Int!
)
The maximum number of points the client is permitted to consume in a 60 minute window.
nodeCount
(Int!
)
The maximum number of nodes this query may return.
remaining
(Int!
)
The number of points remaining in the current rate limit window.
resetAt
(DateTime!
)
The time at which the current rate limit window resets in UTC epoch seconds.
used
(Int!
)
The number of points used in the current rate limit window.
ReactingUserConnectionThe connection type for User.
Fields forReactingUserConnection
Name Description
edges
([ReactingUserEdge]
)
A list of edges.
nodes
([User]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
ReactingUserEdgeRepresents a user that's made a reaction.
Fields forReactingUserEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(User!
)
reactedAt
(DateTime!
)
The moment when the user made the reaction.
ReactionAn emoji reaction to a particular piece of content.
Reaction
Implements
Fields for Reaction
Name Description
content
(ReactionContent!
)
Identifies the emoji reaction.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
id
(ID!
)
The Node ID of the Reaction object.
reactable
(Reactable!
)
The reactable piece of content.
user
(User
)
Identifies the user who created this reaction.
ReactionConnectionA list of reactions that have been left on the subject.
Fields forReactionConnection
Name Description
edges
([ReactionEdge]
)
A list of edges.
nodes
([Reaction]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
viewerHasReacted
(Boolean!
)
Whether or not the authenticated user has left a reaction on the subject.
ReactionEdgeAn edge in a connection.
Fields forReactionEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Reaction
)
The item at the end of the edge.
ReactionGroupA group of emoji reactions to a particular piece of content.
Fields forReactionGroup
Name Description
content
(ReactionContent!
)
Identifies the emoji reaction.
createdAt
(DateTime
)
Identifies when the reaction was created.
reactors
(ReactorConnection!
)
Reactors to the reaction subject with the emotion represented by this reaction group.
Arguments for reactors
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
subject
(Reactable!
)
The subject that was reacted to.
users
(ReactingUserConnection!
)
Users who have reacted to the reaction subject with the emotion represented by this reaction group.
Warning
users
is deprecated.
Reactors can now be mannequins, bots, and organizations. Use the reactors
field instead. Removal on 2021-10-01 UTC.
Arguments for users
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
viewerHasReacted
(Boolean!
)
Whether or not the authenticated user has left a reaction on the subject.
ReactorConnectionThe connection type for Reactor.
Fields forReactorConnection
Name Description
edges
([ReactorEdge]
)
A list of edges.
nodes
([Reactor]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
ReactorEdgeRepresents an author of a reaction.
Fields forReactorEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Reactor!
)
The author of the reaction.
reactedAt
(DateTime!
)
The moment when the user made the reaction.
ReadyForReviewEventRepresents aready_for_review
event on a given pull request.
ReadyForReviewEvent
Implements
Fields for ReadyForReviewEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the ReadyForReviewEvent object.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
resourcePath
(URI!
)
The HTTP path for this ready for review event.
url
(URI!
)
The HTTP URL for this ready for review event.
RefRepresents a Git reference.
Ref
Implements
Fields for Ref
Name Description
associatedPullRequests
(PullRequestConnection!
)
A list of pull requests with this ref as the head ref.
Arguments for associatedPullRequests
after
(String
)
Returns the elements in the list that come after the specified cursor.
baseRefName
(String
)
The base ref name to filter the pull requests by.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
headRefName
(String
)
The head ref name to filter the pull requests by.
labels
([String!]
)
A list of label names to filter the pull requests by.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueOrder
)
Ordering options for pull requests returned from the connection.
states
([PullRequestState!]
)
A list of states to filter the pull requests by.
branchProtectionRule
(BranchProtectionRule
)
Branch protection rules for this ref.
compare
(Comparison
)
Compares the current ref as a base ref to another head ref, if the comparison can be made.
Arguments for compare
headRef
(String!
)
The head ref to compare against.
id
(ID!
)
The Node ID of the Ref object.
name
(String!
)
The ref name.
prefix
(String!
)
The ref's prefix, such as refs/heads/
or refs/tags/
.
refUpdateRule
(RefUpdateRule
)
Branch protection rules that are viewable by non-admins.
repository
(Repository!
)
The repository the ref belongs to.
rules
(RepositoryRuleConnection
)
A list of rules from active Repository and Organization rulesets that apply to this ref.
Arguments for rules
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryRuleOrder
)
Ordering options for repository rules.
target
(GitObject
)
The object the ref points to. Returns null when object does not exist.
RefConnectionThe connection type for Ref.
Fields forRefConnection
Name Description
edges
([RefEdge]
)
A list of edges.
nodes
([Ref]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
RefEdgeAn edge in a connection.
Fields forRefEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Ref
)
The item at the end of the edge.
RefNameConditionTargetParameters to be used for the ref_name condition.
Fields forRefNameConditionTarget
Name Description
exclude
([String!]!
)
Array of ref names or patterns to exclude. The condition will not pass if any of these patterns match.
include
([String!]!
)
Array of ref names or patterns to include. One of these patterns must match for the condition to pass. Also accepts ~DEFAULT_BRANCH
to include the default branch or ~ALL
to include all branches.
Branch protection rules that are enforced on the viewer.
Fields forRefUpdateRule
Name Description
allowsDeletions
(Boolean!
)
Can this branch be deleted.
allowsForcePushes
(Boolean!
)
Are force pushes allowed on this branch.
blocksCreations
(Boolean!
)
Can matching branches be created.
pattern
(String!
)
Identifies the protection rule pattern.
requiredApprovingReviewCount
(Int
)
Number of approving reviews required to update matching branches.
requiredStatusCheckContexts
([String]
)
List of required status check contexts that must pass for commits to be accepted to matching branches.
requiresCodeOwnerReviews
(Boolean!
)
Are reviews from code owners required to update matching branches.
requiresConversationResolution
(Boolean!
)
Are conversations required to be resolved before merging.
requiresLinearHistory
(Boolean!
)
Are merge commits prohibited from being pushed to this branch.
requiresSignatures
(Boolean!
)
Are commits required to be signed.
viewerAllowedToDismissReviews
(Boolean!
)
Is the viewer allowed to dismiss reviews.
viewerCanPush
(Boolean!
)
Can the viewer push to the branch.
ReferencedEventRepresents areferenced
event on a given ReferencedSubject
.
ReferencedEvent
Implements
Fields for ReferencedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
commit
(Commit
)
Identifies the commit associated with thereferenced
event.
commitRepository
(Repository!
)
Identifies the repository associated with thereferenced
event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the ReferencedEvent object.
isCrossRepository
(Boolean!
)
Reference originated in a different repository.
isDirectReference
(Boolean!
)
Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.
subject
(ReferencedSubject!
)
Object referenced by event.
ReleaseA release contains the content for a release.
Release
Implements
Fields for Release
Name Description
author
(User
)
The author of the release.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
description
(String
)
The description of the release.
descriptionHTML
(HTML
)
The description of this release rendered to HTML.
id
(ID!
)
The Node ID of the Release object.
immutable
(Boolean!
)
Whether or not the release is immutable.
isDraft
(Boolean!
)
Whether or not the release is a draft.
isLatest
(Boolean!
)
Whether or not the release is the latest releast.
isPrerelease
(Boolean!
)
Whether or not the release is a prerelease.
mentions
(UserConnection
)
A list of users mentioned in the release description.
Arguments for mentions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
name
(String
)
The title of the release.
publishedAt
(DateTime
)
Identifies the date and time when the release was created.
reactionGroups
([ReactionGroup!]
)
A list of reactions grouped by content left on the subject.
reactions
(ReactionConnection!
)
A list of Reactions left on the Issue.
Arguments for reactions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
content
(ReactionContent
)
Allows filtering Reactions by emoji.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ReactionOrder
)
Allows specifying the order in which reactions are returned.
releaseAssets
(ReleaseAssetConnection!
)
List of releases assets which are dependent on this release.
Arguments for releaseAssets
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
name
(String
)
A name to filter the assets by.
repository
(Repository!
)
The repository that the release belongs to.
resourcePath
(URI!
)
The HTTP path for this issue.
shortDescriptionHTML
(HTML
)
A description of the release, rendered to HTML without any links in it.
Arguments for shortDescriptionHTML
limit
(Int
)
How many characters to return.
The default value is 200
.
tag
(Ref
)
The Git tag the release points to.
tagCommit
(Commit
)
The tag commit for this release.
tagName
(String!
)
The name of the release's Git tag.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this issue.
viewerCanReact
(Boolean!
)
Can user react to this subject.
ReleaseAssetA release asset contains the content for a release asset.
ReleaseAsset
Implements
Fields for ReleaseAsset
Name Description
contentType
(String!
)
The asset's content-type.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
digest
(String
)
The SHA256 digest of the asset.
downloadCount
(Int!
)
The number of times this asset was downloaded.
downloadUrl
(URI!
)
Identifies the URL where you can download the release asset via the browser.
id
(ID!
)
The Node ID of the ReleaseAsset object.
name
(String!
)
Identifies the title of the release asset.
release
(Release
)
Release that the asset is associated with.
size
(Int!
)
The size (in bytes) of the asset.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
uploadedBy
(User!
)
The user that performed the upload.
url
(URI!
)
Identifies the URL of the release asset.
ReleaseAssetEdgeAn edge in a connection.
Fields forReleaseAssetEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(ReleaseAsset
)
The item at the end of the edge.
ReleaseConnectionThe connection type for Release.
Fields forReleaseConnection
Name Description
edges
([ReleaseEdge]
)
A list of edges.
nodes
([Release]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
ReleaseEdgeAn edge in a connection.
Fields forReleaseEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Release
)
The item at the end of the edge.
RemovedFromMergeQueueEventRepresents aremoved_from_merge_queue
event on a given pull request.
RemovedFromMergeQueueEvent
Implements
Fields for RemovedFromMergeQueueEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
beforeCommit
(Commit
)
Identifies the before commit SHA for theremoved_from_merge_queue
event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
enqueuer
(User
)
The user who removed this Pull Request from the merge queue.
id
(ID!
)
The Node ID of the RemovedFromMergeQueueEvent object.
mergeQueue
(MergeQueue
)
The merge queue where this pull request was removed from.
pullRequest
(PullRequest
)
PullRequest referenced by event.
reason
(String
)
The reason this pull request was removed from the queue.
RemovedFromProjectEventRepresents aremoved_from_project
event on a given issue or pull request.
RemovedFromProjectEvent
Implements
Fields for RemovedFromProjectEvent
RenamedTitleEvent
Represents arenamed
event on a given issue or pull request.
RenamedTitleEvent
Implements
Fields for RenamedTitleEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
currentTitle
(String!
)
Identifies the current title of the issue or pull request.
id
(ID!
)
The Node ID of the RenamedTitleEvent object.
previousTitle
(String!
)
Identifies the previous title of the issue or pull request.
subject
(RenamedTitleSubject!
)
Subject that was renamed.
ReopenedEventRepresents areopened
event on any Closable
.
ReopenedEvent
Implements
Fields for ReopenedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
closable
(Closable!
)
Object that was reopened.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the ReopenedEvent object.
stateReason
(IssueStateReason
)
The reason the issue state was changed to open.
RepoAccessAuditEntryAudit log entry for a repo.access event.
RepoAccessAuditEntry
Implements
Fields for RepoAccessAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoAccessAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
visibility
(RepoAccessAuditEntryVisibility
)
The visibility of the repository.
Warning
visibility
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoAddMemberAuditEntryAudit log entry for a repo.add_member event.
RepoAddMemberAuditEntry
Implements
Fields for RepoAddMemberAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoAddMemberAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
visibility
(RepoAddMemberAuditEntryVisibility
)
The visibility of the repository.
Warning
visibility
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoAddTopicAuditEntryAudit log entry for a repo.add_topic event.
RepoAddTopicAuditEntry
Implements
Fields for RepoAddTopicAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoAddTopicAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
topic
(Topic
)
The name of the topic added to the repository.
topicName
(String
)
The name of the topic added to the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoArchivedAuditEntryAudit log entry for a repo.archived event.
RepoArchivedAuditEntry
Implements
Fields for RepoArchivedAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoArchivedAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
visibility
(RepoArchivedAuditEntryVisibility
)
The visibility of the repository.
Warning
visibility
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoChangeMergeSettingAuditEntryAudit log entry for a repo.change_merge_setting event.
RepoChangeMergeSettingAuditEntry
Implements
Fields for RepoChangeMergeSettingAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoChangeMergeSettingAuditEntry object.
isEnabled
(Boolean
)
Whether the change was to enable (true) or disable (false) the merge type.
Warning
isEnabled
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
mergeType
(RepoChangeMergeSettingAuditEntryMergeType
)
The merge method affected by the change.
Warning
mergeType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoConfigDisableAnonymousGitAccessAuditEntryAudit log entry for a repo.config.disable_anonymous_git_access event.
RepoConfigDisableAnonymousGitAccessAuditEntry
Implements
Fields for RepoConfigDisableAnonymousGitAccessAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoConfigDisableAnonymousGitAccessAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoConfigDisableCollaboratorsOnlyAuditEntryAudit log entry for a repo.config.disable_collaborators_only event.
RepoConfigDisableCollaboratorsOnlyAuditEntry
Implements
Fields for RepoConfigDisableCollaboratorsOnlyAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoConfigDisableCollaboratorsOnlyAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoConfigDisableContributorsOnlyAuditEntryAudit log entry for a repo.config.disable_contributors_only event.
RepoConfigDisableContributorsOnlyAuditEntry
Implements
Fields for RepoConfigDisableContributorsOnlyAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoConfigDisableContributorsOnlyAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoConfigDisableSockpuppetDisallowedAuditEntryAudit log entry for a repo.config.disable_sockpuppet_disallowed event.
RepoConfigDisableSockpuppetDisallowedAuditEntry
Implements
Fields for RepoConfigDisableSockpuppetDisallowedAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoConfigDisableSockpuppetDisallowedAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoConfigEnableAnonymousGitAccessAuditEntryAudit log entry for a repo.config.enable_anonymous_git_access event.
RepoConfigEnableAnonymousGitAccessAuditEntry
Implements
Fields for RepoConfigEnableAnonymousGitAccessAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoConfigEnableAnonymousGitAccessAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoConfigEnableCollaboratorsOnlyAuditEntryAudit log entry for a repo.config.enable_collaborators_only event.
RepoConfigEnableCollaboratorsOnlyAuditEntry
Implements
Fields for RepoConfigEnableCollaboratorsOnlyAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoConfigEnableCollaboratorsOnlyAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoConfigEnableContributorsOnlyAuditEntryAudit log entry for a repo.config.enable_contributors_only event.
RepoConfigEnableContributorsOnlyAuditEntry
Implements
Fields for RepoConfigEnableContributorsOnlyAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoConfigEnableContributorsOnlyAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoConfigEnableSockpuppetDisallowedAuditEntryAudit log entry for a repo.config.enable_sockpuppet_disallowed event.
RepoConfigEnableSockpuppetDisallowedAuditEntry
Implements
Fields for RepoConfigEnableSockpuppetDisallowedAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoConfigEnableSockpuppetDisallowedAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoConfigLockAnonymousGitAccessAuditEntryAudit log entry for a repo.config.lock_anonymous_git_access event.
RepoConfigLockAnonymousGitAccessAuditEntry
Implements
Fields for RepoConfigLockAnonymousGitAccessAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoConfigLockAnonymousGitAccessAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoConfigUnlockAnonymousGitAccessAuditEntryAudit log entry for a repo.config.unlock_anonymous_git_access event.
RepoConfigUnlockAnonymousGitAccessAuditEntry
Implements
Fields for RepoConfigUnlockAnonymousGitAccessAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoConfigUnlockAnonymousGitAccessAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoCreateAuditEntryAudit log entry for a repo.create event.
RepoCreateAuditEntry
Implements
Fields for RepoCreateAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
forkParentName
(String
)
The name of the parent repository for this forked repository.
Warning
forkParentName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
forkSourceName
(String
)
The name of the root repository for this network.
Warning
forkSourceName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoCreateAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
visibility
(RepoCreateAuditEntryVisibility
)
The visibility of the repository.
Warning
visibility
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoDestroyAuditEntryAudit log entry for a repo.destroy event.
RepoDestroyAuditEntry
Implements
Fields for RepoDestroyAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoDestroyAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
visibility
(RepoDestroyAuditEntryVisibility
)
The visibility of the repository.
Warning
visibility
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoRemoveMemberAuditEntryAudit log entry for a repo.remove_member event.
RepoRemoveMemberAuditEntry
Implements
Fields for RepoRemoveMemberAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoRemoveMemberAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
visibility
(RepoRemoveMemberAuditEntryVisibility
)
The visibility of the repository.
Warning
visibility
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepoRemoveTopicAuditEntryAudit log entry for a repo.remove_topic event.
RepoRemoveTopicAuditEntry
Implements
Fields for RepoRemoveTopicAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the RepoRemoveTopicAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
topic
(Topic
)
The name of the topic added to the repository.
topicName
(String
)
The name of the topic added to the repository.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepositoryA repository contains the content for a project.
Repository
Implements
Node
PackageOwner
ProjectOwner
ProjectV2Recent
RepositoryInfo
Starrable
Subscribable
UniformResourceLocatable
Repository
Name Description
allowUpdateBranch
(Boolean!
)
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.
archivedAt
(DateTime
)
Identifies the date and time when the repository was archived.
assignableUsers
(UserConnection!
)
A list of users that can be assigned to issues in this repository.
Arguments for assignableUsers
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
query
(String
)
Filters users with query on user name and login.
autoMergeAllowed
(Boolean!
)
Whether or not Auto-merge can be enabled on pull requests in this repository.
branchProtectionRules
(BranchProtectionRuleConnection!
)
A list of branch protection rules for this repository.
Arguments for branchProtectionRules
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
codeOfConduct
(CodeOfConduct
)
Returns the code of conduct for this repository.
codeowners
(RepositoryCodeowners
)
Information extracted from the repository's CODEOWNERS
file.
Arguments for codeowners
refName
(String
)
The ref name used to return the associated CODEOWNERS
file.
collaborators
(RepositoryCollaboratorConnection
)
A list of collaborators associated with the repository.
Arguments for collaborators
affiliation
(CollaboratorAffiliation
)
Collaborators affiliation level with a repository.
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
login
(String
)
The login of one specific collaborator.
query
(String
)
Filters users with query on user name and login.
commitComments
(CommitCommentConnection!
)
A list of commit comments associated with the repository.
Arguments for commitComments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
contactLinks
([RepositoryContactLink!]
)
Returns a list of contact links associated to the repository.
contributingGuidelines
(ContributingGuidelines
)
Returns the contributing guidelines for this repository.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
defaultBranchRef
(Ref
)
The Ref associated with the repository's default branch.
deleteBranchOnMerge
(Boolean!
)
Whether or not branches are automatically deleted when merged in this repository.
dependencyGraphManifests
(DependencyGraphManifestConnection
)
A list of dependency manifests contained in the repository.
Arguments for dependencyGraphManifests
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
dependenciesAfter
(String
)
Cursor to paginate dependencies.
dependenciesFirst
(Int
)
Number of dependencies to fetch.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
withDependencies
(Boolean
)
Flag to scope to only manifests with dependencies.
deployKeys
(DeployKeyConnection!
)
A list of deploy keys that are on this repository.
Arguments for deployKeys
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
deployments
(DeploymentConnection!
)
Deployments associated with the repository.
Arguments for deployments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
environments
([String!]
)
Environments to list deployments for.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(DeploymentOrder
)
Ordering options for deployments returned from the connection.
description
(String
)
The description of the repository.
descriptionHTML
(HTML!
)
The description of the repository rendered to HTML.
discussion
(Discussion
)
Returns a single discussion from the current repository by number.
Arguments for discussion
number
(Int!
)
The number for the discussion to be returned.
discussionCategories
(DiscussionCategoryConnection!
)
A list of discussion categories that are available in the repository.
Arguments for discussionCategories
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
filterByAssignable
(Boolean
)
Filter by categories that are assignable by the viewer.
The default value is false
.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
discussionCategory
(DiscussionCategory
)
A discussion category by slug.
Arguments for discussionCategory
slug
(String!
)
The slug of the discussion category to be returned.
discussions
(DiscussionConnection!
)
A list of discussions that have been opened in the repository.
Arguments for discussions
after
(String
)
Returns the elements in the list that come after the specified cursor.
answered
(Boolean
)
Only show answered or unanswered discussions.
before
(String
)
Returns the elements in the list that come before the specified cursor.
categoryId
(ID
)
Only include discussions that belong to the category with this ID.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(DiscussionOrder
)
Ordering options for discussions returned from the connection.
states
([DiscussionState!]
)
A list of states to filter the discussions by.
diskUsage
(Int
)
The number of kilobytes this repository occupies on disk.
environment
(Environment
)
Returns a single active environment from the current repository by name.
Arguments for environment
name
(String!
)
The name of the environment to be returned.
environments
(EnvironmentConnection!
)
A list of environments that are in this repository.
Arguments for environments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
names
([String!]
)
The names of the environments to be returned.
orderBy
(Environments
)
Ordering options for the environments.
pinnedEnvironmentFilter
(EnvironmentPinnedFilterField
)
Filter to control pinned environments return.
The default value is ALL
.
forkCount
(Int!
)
Returns how many forks there are of this repository in the whole network.
forkingAllowed
(Boolean!
)
Whether this repository allows forks.
forks
(RepositoryConnection!
)
A list of direct forked repositories.
Arguments for forks
affiliations
([RepositoryAffiliation]
)
Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
hasIssuesEnabled
(Boolean
)
If non-null, filters repositories according to whether they have issues enabled.
isLocked
(Boolean
)
If non-null, filters repositories according to whether they have been locked.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryOrder
)
Ordering options for repositories returned from the connection.
ownerAffiliations
([RepositoryAffiliation]
)
Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
privacy
(RepositoryPrivacy
)
If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.
visibility
(RepositoryVisibility
)
If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.
fundingLinks
([FundingLink!]!
)
The funding links for this repository.
hasDiscussionsEnabled
(Boolean!
)
Indicates if the repository has the Discussions feature enabled.
hasIssuesEnabled
(Boolean!
)
Indicates if the repository has issues feature enabled.
hasProjectsEnabled
(Boolean!
)
Indicates if the repository has the Projects feature enabled.
hasSponsorshipsEnabled
(Boolean!
)
Indicates if the repository displays a Sponsor button for financial contributions.
hasVulnerabilityAlertsEnabled
(Boolean!
)
Whether vulnerability alerts are enabled for the repository.
hasWikiEnabled
(Boolean!
)
Indicates if the repository has wiki feature enabled.
homepageUrl
(URI
)
The repository's URL.
id
(ID!
)
The Node ID of the Repository object.
interactionAbility
(RepositoryInteractionAbility
)
The interaction ability settings for this repository.
isArchived
(Boolean!
)
Indicates if the repository is unmaintained.
isBlankIssuesEnabled
(Boolean!
)
Returns true if blank issue creation is allowed.
isDisabled
(Boolean!
)
Returns whether or not this repository disabled.
isEmpty
(Boolean!
)
Returns whether or not this repository is empty.
isFork
(Boolean!
)
Identifies if the repository is a fork.
isInOrganization
(Boolean!
)
Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.
isLocked
(Boolean!
)
Indicates if the repository has been locked or not.
isMirror
(Boolean!
)
Identifies if the repository is a mirror.
isPrivate
(Boolean!
)
Identifies if the repository is private or internal.
isSecurityPolicyEnabled
(Boolean
)
Returns true if this repository has a security policy.
isTemplate
(Boolean!
)
Identifies if the repository is a template that can be used to generate new repositories.
isUserConfigurationRepository
(Boolean!
)
Is this repository a user configuration repository?.
issue
(Issue
)
Returns a single issue from the current repository by number.
Arguments for issue
number
(Int!
)
The number for the issue to be returned.
issueOrPullRequest
(IssueOrPullRequest
)
Returns a single issue-like object from the current repository by number.
Arguments for issueOrPullRequest
number
(Int!
)
The number for the issue to be returned.
issueTemplates
([IssueTemplate!]
)
Returns a list of issue templates associated to the repository.
issueType
(IssueType
)
Returns a single issue type by name.
Arguments for issueType
name
(String!
)
Issue type name.
issueTypes
(IssueTypeConnection
)
A list of the repository's issue types.
Arguments for issueTypes
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueTypeOrder
)
Ordering options for issue types returned from the connection.
issues
(IssueConnection!
)
A list of issues that have been opened in the repository.
Arguments for issues
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
filterBy
(IssueFilters
)
Filtering options for issues returned from the connection.
first
(Int
)
Returns the first n elements from the list.
labels
([String!]
)
A list of label names to filter the pull requests by.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueOrder
)
Ordering options for issues returned from the connection.
states
([IssueState!]
)
A list of states to filter the issues by.
label
(Label
)
Returns a single label by name.
Arguments for label
name
(String!
)
Label name.
labels
(LabelConnection
)
A list of labels associated with the repository.
Arguments for labels
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(LabelOrder
)
Ordering options for labels returned from the connection.
query
(String
)
If provided, searches labels by name and description.
languages
(LanguageConnection
)
A list containing a breakdown of the language composition of the repository.
Arguments for languages
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(LanguageOrder
)
Order for connection.
latestRelease
(Release
)
Get the latest release for the repository if one exists.
licenseInfo
(License
)
The license associated with the repository.
lockReason
(RepositoryLockReason
)
The reason the repository has been locked.
mentionableUsers
(UserConnection!
)
A list of Users that can be mentioned in the context of the repository.
Arguments for mentionableUsers
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
query
(String
)
Filters users with query on user name and login.
mergeCommitAllowed
(Boolean!
)
Whether or not PRs are merged with a merge commit on this repository.
mergeCommitMessage
(MergeCommitMessage!
)
How the default commit message will be generated when merging a pull request.
mergeCommitTitle
(MergeCommitTitle!
)
How the default commit title will be generated when merging a pull request.
mergeQueue
(MergeQueue
)
The merge queue for a specified branch, otherwise the default branch if not provided.
Arguments for mergeQueue
branch
(String
)
The name of the branch to get the merge queue for. Case sensitive.
milestone
(Milestone
)
Returns a single milestone from the current repository by number.
Arguments for milestone
number
(Int!
)
The number for the milestone to be returned.
milestones
(MilestoneConnection
)
A list of milestones associated with the repository.
Arguments for milestones
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(MilestoneOrder
)
Ordering options for milestones.
query
(String
)
Filters milestones with a query on the title.
states
([MilestoneState!]
)
Filter by the state of the milestones.
mirrorUrl
(URI
)
The repository's original mirror URL.
name
(String!
)
The name of the repository.
nameWithOwner
(String!
)
The repository's name with owner.
object
(GitObject
)
A Git object in the repository.
Arguments for object
expression
(String
)
A Git revision expression suitable for rev-parse.
oid
(GitObjectID
)
The Git object ID.
openGraphImageUrl
(URI!
)
The image used to represent this repository in Open Graph data.
owner
(RepositoryOwner!
)
The User owner of the repository.
packages
(PackageConnection!
)
A list of packages under the owner.
Arguments for packages
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
names
([String]
)
Find packages by their names.
orderBy
(PackageOrder
)
Ordering of the returned packages.
packageType
(PackageType
)
Filter registry package by type.
repositoryId
(ID
)
Find packages in a repository by ID.
parent
(Repository
)
The repository parent, if this is a fork.
pinnedDiscussions
(PinnedDiscussionConnection!
)
A list of discussions that have been pinned in this repository.
Arguments for pinnedDiscussions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
pinnedEnvironments
(PinnedEnvironmentConnection
)
A list of pinned environments for this repository.
Arguments for pinnedEnvironments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(PinnedEnvironmentOrder
)
Ordering options for the environments.
pinnedIssues
(PinnedIssueConnection
)
A list of pinned issues for this repository.
Arguments for pinnedIssues
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
planFeatures
(RepositoryPlanFeatures!
)
Returns information about the availability of certain features and limits based on the repository's billing plan.
primaryLanguage
(Language
)
The primary language of the repository's code.
project
(Project
)
Find project by number.
Warning
project
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
Arguments for project
number
(Int!
)
The project number to find.
projectV2
(ProjectV2
)
Finds and returns the Project according to the provided Project number.
Arguments for projectV2
number
(Int!
)
The Project number.
projects
(ProjectConnection!
)
A list of projects under the owner.
Warning
projects
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
Arguments for projects
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectOrder
)
Ordering options for projects returned from the connection.
search
(String
)
Query to search projects by, currently only searching by name.
states
([ProjectState!]
)
A list of states to filter the projects by.
projectsResourcePath
(URI!
)
The HTTP path listing the repository's projects.
projectsUrl
(URI!
)
The HTTP URL listing the repository's projects.
projectsV2
(ProjectV2Connection!
)
List of projects linked to this repository.
Arguments for projectsV2
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
minPermissionLevel
(ProjectV2PermissionLevel
)
Filter projects based on user role.
The default value is READ
.
orderBy
(ProjectV2Order
)
How to order the returned projects.
query
(String
)
A project to search for linked to the repo.
pullRequest
(PullRequest
)
Returns a single pull request from the current repository by number.
Arguments for pullRequest
number
(Int!
)
The number for the pull request to be returned.
pullRequestTemplates
([PullRequestTemplate!]
)
Returns a list of pull request templates associated to the repository.
pullRequests
(PullRequestConnection!
)
A list of pull requests that have been opened in the repository.
Arguments for pullRequests
after
(String
)
Returns the elements in the list that come after the specified cursor.
baseRefName
(String
)
The base ref name to filter the pull requests by.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
headRefName
(String
)
The head ref name to filter the pull requests by.
labels
([String!]
)
A list of label names to filter the pull requests by.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueOrder
)
Ordering options for pull requests returned from the connection.
states
([PullRequestState!]
)
A list of states to filter the pull requests by.
pushedAt
(DateTime
)
Identifies the date and time when the repository was last pushed to.
rebaseMergeAllowed
(Boolean!
)
Whether or not rebase-merging is enabled on this repository.
recentProjects
(ProjectV2Connection!
)
Recent projects that this user has modified in the context of the owner.
Arguments for recentProjects
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
ref
(Ref
)
Fetch a given ref from the repository.
Arguments for ref
qualifiedName
(String!
)
The ref to retrieve. Fully qualified matches are checked in order (refs/heads/master
) before falling back onto checks for short name matches (master
).
refs
(RefConnection
)
Fetch a list of refs from the repository.
Arguments for refs
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
direction
(OrderDirection
)
DEPRECATED: use orderBy. The ordering direction.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RefOrder
)
Ordering options for refs returned from the connection.
query
(String
)
Filters refs with query on name.
refPrefix
(String!
)
A ref name prefix like refs/heads/
, refs/tags/
, etc.
release
(Release
)
Lookup a single release given various criteria.
Arguments for release
tagName
(String!
)
The name of the Tag the Release was created from.
releases
(ReleaseConnection!
)
List of releases which are dependent on this repository.
Arguments for releases
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ReleaseOrder
)
Order for connection.
repositoryTopics
(RepositoryTopicConnection!
)
A list of applied repository-topic associations for this repository.
Arguments for repositoryTopics
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
resourcePath
(URI!
)
The HTTP path for this repository.
ruleset
(RepositoryRuleset
)
Returns a single ruleset from the current repository by ID.
Arguments for ruleset
databaseId
(Int!
)
The ID of the ruleset to be returned.
includeParents
(Boolean
)
Include rulesets configured at higher levels that apply to this repository.
The default value is true
.
rulesets
(RepositoryRulesetConnection
)
A list of rulesets for this repository.
Arguments for rulesets
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
includeParents
(Boolean
)
Return rulesets configured at higher levels that apply to this repository.
The default value is true
.
last
(Int
)
Returns the last n elements from the list.
targets
([RepositoryRulesetTarget!]
)
Return rulesets that apply to the specified target.
securityPolicyUrl
(URI
)
The security policy URL.
shortDescriptionHTML
(HTML!
)
A description of the repository, rendered to HTML without any links in it.
Arguments for shortDescriptionHTML
limit
(Int
)
How many characters to return.
The default value is 200
.
squashMergeAllowed
(Boolean!
)
Whether or not squash-merging is enabled on this repository.
squashMergeCommitMessage
(SquashMergeCommitMessage!
)
How the default commit message will be generated when squash merging a pull request.
squashMergeCommitTitle
(SquashMergeCommitTitle!
)
How the default commit title will be generated when squash merging a pull request.
squashPrTitleUsedAsDefault
(Boolean!
)
Whether a squash merge commit can use the pull request title as default.
Warning
squashPrTitleUsedAsDefault
is deprecated.
squashPrTitleUsedAsDefault
will be removed. Use Repository.squashMergeCommitTitle
instead. Removal on 2023-04-01 UTC.
sshUrl
(GitSSHRemote!
)
The SSH URL to clone this repository.
stargazerCount
(Int!
)
Returns a count of how many stargazers there are on this object.
stargazers
(StargazerConnection!
)
A list of users who have starred this starrable.
Arguments for stargazers
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(StarOrder
)
Order for connection.
submodules
(SubmoduleConnection!
)
Returns a list of all submodules in this repository parsed from the .gitmodules file as of the default branch's HEAD commit.
Arguments for submodules
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
suggestedActors
(ActorConnection!
)
A list of suggested actors that can be attributed to content in this repository.
Arguments for suggestedActors
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
capabilities
([RepositorySuggestedActorFilter!]!
)
A list of capabilities to filter actors by.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
loginNames
(String
)
A comma separated list of login names to filter actors by. Only the first 10 logins will be used.
query
(String
)
Search actors with query on user name and login.
tempCloneToken
(String
)
Temporary authentication token for cloning this repository.
templateRepository
(Repository
)
The repository from which this repository was generated, if any.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this repository.
usesCustomOpenGraphImage
(Boolean!
)
Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner's avatar.
viewerCanAdminister
(Boolean!
)
Indicates whether the viewer has admin permissions on this repository.
viewerCanCreateProjects
(Boolean!
)
Can the current viewer create new projects on this owner.
Warning
viewerCanCreateProjects
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
viewerCanSubscribe
(Boolean!
)
Check if the viewer is able to change their subscription status for the repository.
viewerCanUpdateTopics
(Boolean!
)
Indicates whether the viewer can update the topics of this repository.
viewerDefaultCommitEmail
(String
)
The last commit email for the viewer.
viewerDefaultMergeMethod
(PullRequestMergeMethod!
)
The last used merge method by the viewer or the default for the repository.
viewerHasStarred
(Boolean!
)
Returns a boolean indicating whether the viewing user has starred this starrable.
viewerPermission
(RepositoryPermission
)
The users permission level on the repository. Will return null if authenticated as an GitHub App.
viewerPossibleCommitEmails
([String!]
)
A list of emails this viewer can commit with.
viewerSubscription
(SubscriptionState
)
Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
visibility
(RepositoryVisibility!
)
Indicates the repository's visibility level.
vulnerabilityAlert
(RepositoryVulnerabilityAlert
)
Returns a single vulnerability alert from the current repository by number.
Arguments for vulnerabilityAlert
number
(Int!
)
The number for the vulnerability alert to be returned.
vulnerabilityAlerts
(RepositoryVulnerabilityAlertConnection
)
A list of vulnerability alerts that are on this repository.
Arguments for vulnerabilityAlerts
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
dependencyScopes
([RepositoryVulnerabilityAlertDependencyScope!]
)
Filter by the scope of the alert's dependency.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
states
([RepositoryVulnerabilityAlertState!]
)
Filter by the state of the alert.
watchers
(UserConnection!
)
A list of users watching the repository.
Arguments for watchers
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
webCommitSignoffRequired
(Boolean!
)
Whether contributors are required to sign off on web-based commits in this repository.
RepositoryCodeownersInformation extracted from a repository's CODEOWNERS
file.
RepositoryCodeowners
RepositoryCodeownersError
An error in a CODEOWNERS
file.
RepositoryCodeownersError
Name Description
column
(Int!
)
The column number where the error occurs.
kind
(String!
)
A short string describing the type of error.
line
(Int!
)
The line number where the error occurs.
message
(String!
)
A complete description of the error, combining information from other fields.
path
(String!
)
The path to the file when the error occurs.
source
(String!
)
The content of the line where the error occurs.
suggestion
(String
)
A suggestion of how to fix the error.
RepositoryConnectionA list of repositories owned by the subject.
Fields forRepositoryConnection
Name Description
edges
([RepositoryEdge]
)
A list of edges.
nodes
([Repository]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
totalDiskUsage
(Int!
)
The total size in kilobytes of all repositories in the connection. Value will never be larger than max 32-bit signed integer.
A repository contact link.
Fields forRepositoryContactLink
Name Description
about
(String!
)
The contact link purpose.
name
(String!
)
The contact link name.
url
(URI!
)
The contact link URL.
RepositoryEdgeAn edge in a connection.
Fields forRepositoryEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Repository
)
The item at the end of the edge.
RepositoryIdConditionTargetParameters to be used for the repository_id condition.
Fields forRepositoryIdConditionTarget
Name Description
repositoryIds
([ID!]!
)
One of these repo IDs must match the repo.
RepositoryInvitationAn invitation for a user to be added to a repository.
RepositoryInvitation
Implements
Fields for RepositoryInvitation
Name Description
email
(String
)
The email address that received the invitation.
id
(ID!
)
The Node ID of the RepositoryInvitation object.
invitee
(User
)
The user who received the invitation.
inviter
(User!
)
The user who created the invitation.
permalink
(URI!
)
The permalink for this repository invitation.
permission
(RepositoryPermission!
)
The permission granted on this repository by this invitation.
repository
(RepositoryInfo
)
The Repository the user is invited to.
RepositoryMigrationA GitHub Enterprise Importer (GEI) repository migration.
RepositoryMigration
Implements
Fields for RepositoryMigration
Name Description
continueOnError
(Boolean!
)
The migration flag to continue on error.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(String
)
Identifies the primary key from the database.
failureReason
(String
)
The reason the migration failed.
id
(ID!
)
The Node ID of the RepositoryMigration object.
migrationLogUrl
(URI
)
The URL for the migration log (expires 1 day after migration completes).
migrationSource
(MigrationSource!
)
The migration source.
repositoryName
(String!
)
The target repository name.
sourceUrl
(URI!
)
The migration source URL, for example https://github.com
or https://monalisa.ghe.com
.
state
(MigrationState!
)
The migration state.
warningsCount
(Int!
)
The number of warnings encountered for this migration. To review the warnings, check the Migration Log.
RepositoryNameConditionTargetParameters to be used for the repository_name condition.
Fields forRepositoryNameConditionTarget
Name Description
exclude
([String!]!
)
Array of repository names or patterns to exclude. The condition will not pass if any of these patterns match.
include
([String!]!
)
Array of repository names or patterns to include. One of these patterns must match for the condition to pass. Also accepts ~ALL
to include all repositories.
protected
(Boolean!
)
Target changes that match these patterns will be prevented except by those with bypass permissions.
RepositoryPlanFeaturesInformation about the availability of features and limits for a repository based on its billing plan.
Fields forRepositoryPlanFeatures
Name Description
codeowners
(Boolean!
)
Whether reviews can be automatically requested and enforced with a CODEOWNERS file.
draftPullRequests
(Boolean!
)
Whether pull requests can be created as or converted to draft.
maximumAssignees
(Int!
)
Maximum number of users that can be assigned to an issue or pull request.
maximumManualReviewRequests
(Int!
)
Maximum number of manually-requested reviews on a pull request.
teamReviewRequests
(Boolean!
)
Whether teams can be requested to review pull requests.
RepositoryRuleA repository rule.
RepositoryRule
Implements
Fields for RepositoryRule
Name Description
id
(ID!
)
The Node ID of the RepositoryRule object.
parameters
(RuleParameters
)
The parameters for this rule.
repositoryRuleset
(RepositoryRuleset
)
The repository ruleset associated with this rule configuration.
type
(RepositoryRuleType!
)
The type of rule.
RepositoryRuleConditionsSet of conditions that determine if a ruleset will evaluate.
Fields forRepositoryRuleConditions
RepositoryRuleset
A repository ruleset.
RepositoryRuleset
Implements
Fields for RepositoryRuleset
Name Description
bypassActors
(RepositoryRulesetBypassActorConnection
)
The actors that can bypass this ruleset.
Arguments for bypassActors
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
conditions
(RepositoryRuleConditions!
)
The set of conditions that must evaluate to true for this ruleset to apply.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
enforcement
(RuleEnforcement!
)
The enforcement level of this ruleset.
id
(ID!
)
The Node ID of the RepositoryRuleset object.
name
(String!
)
Name of the ruleset.
rules
(RepositoryRuleConnection
)
List of rules.
Arguments for rules
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
type
(RepositoryRuleType
)
The type of rule.
source
(RuleSource!
)
Source of ruleset.
target
(RepositoryRulesetTarget
)
Target of the ruleset.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
RepositoryRulesetBypassActorA team or app that has the ability to bypass a rules defined on a ruleset.
RepositoryRulesetBypassActor
Implements
Fields for RepositoryRulesetBypassActor
Name Description
actor
(BypassActor
)
The actor that can bypass rules.
bypassMode
(RepositoryRulesetBypassActorBypassMode
)
The mode for the bypass actor.
deployKey
(Boolean!
)
This actor represents the ability for a deploy key to bypass.
enterpriseOwner
(Boolean!
)
This actor represents the ability for an enterprise owner to bypass.
id
(ID!
)
The Node ID of the RepositoryRulesetBypassActor object.
organizationAdmin
(Boolean!
)
This actor represents the ability for an organization owner to bypass.
repositoryRoleDatabaseId
(Int
)
If the actor is a repository role, the repository role's ID that can bypass.
repositoryRoleName
(String
)
If the actor is a repository role, the repository role's name that can bypass.
repositoryRuleset
(RepositoryRuleset
)
Identifies the ruleset associated with the allowed actor.
RepositoryTopicA repository-topic connects a repository to a topic.
RepositoryTopic
Implements
Fields for RepositoryTopic
Name Description
id
(ID!
)
The Node ID of the RepositoryTopic object.
resourcePath
(URI!
)
The HTTP path for this repository-topic.
topic
(Topic!
)
The topic.
url
(URI!
)
The HTTP URL for this repository-topic.
RepositoryVisibilityChangeDisableAuditEntryAudit log entry for a repository_visibility_change.disable event.
RepositoryVisibilityChangeDisableAuditEntry
Implements
Fields for RepositoryVisibilityChangeDisableAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
enterpriseResourcePath
(URI
)
The HTTP path for this enterprise.
enterpriseSlug
(String
)
The slug of the enterprise.
enterpriseUrl
(URI
)
The HTTP URL for this enterprise.
id
(ID!
)
The Node ID of the RepositoryVisibilityChangeDisableAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RepositoryVisibilityChangeEnableAuditEntryAudit log entry for a repository_visibility_change.enable event.
RepositoryVisibilityChangeEnableAuditEntry
Implements
Fields for RepositoryVisibilityChangeEnableAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
enterpriseResourcePath
(URI
)
The HTTP path for this enterprise.
enterpriseSlug
(String
)
The slug of the enterprise.
enterpriseUrl
(URI
)
The HTTP URL for this enterprise.
id
(ID!
)
The Node ID of the RepositoryVisibilityChangeEnableAuditEntry object.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
RequiredDeploymentsParametersChoose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.
Fields forRequiredDeploymentsParameters
Name Description
requiredDeploymentEnvironments
([String!]!
)
The environments that must be successfully deployed to before branches can be merged.
RequiredStatusCheckDescriptionRepresents a required status check for a protected branch, but not any specific run of that check.
Fields forRequiredStatusCheckDescription
Name Description
app
(App
)
The App that must provide this status in order for it to be accepted.
context
(String!
)
The name of this status.
RequiredStatusChecksParametersChoose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.
Fields forRequiredStatusChecksParameters
Name Description
doNotEnforceOnCreate
(Boolean!
)
Allow repositories and branches to be created if a check would otherwise prohibit it.
requiredStatusChecks
([StatusCheckConfiguration!]!
)
Status checks that are required.
strictRequiredStatusChecksPolicy
(Boolean!
)
Whether pull requests targeting a matching branch must be tested with the latest code. This setting will not take effect unless at least one status check is enabled.
RestrictedContributionRepresents a private contribution a user made on GitHub.
RestrictedContribution
Implements
Fields for RestrictedContribution
Name Description
isRestricted
(Boolean!
)
Whether this contribution is associated with a record you do not have access to. For example, your own 'first issue' contribution may have been made on a repository you can no longer access.
occurredAt
(DateTime!
)
When this contribution was made.
resourcePath
(URI!
)
The HTTP path for this contribution.
url
(URI!
)
The HTTP URL for this contribution.
user
(User!
)
The user who made this contribution.
ReviewDismissalAllowanceA user, team, or app who has the ability to dismiss a review on a protected branch.
ReviewDismissalAllowance
Implements
Fields for ReviewDismissalAllowance
Name Description
actor
(ReviewDismissalAllowanceActor
)
The actor that can dismiss.
branchProtectionRule
(BranchProtectionRule
)
Identifies the branch protection rule associated with the allowed user, team, or app.
id
(ID!
)
The Node ID of the ReviewDismissalAllowance object.
ReviewDismissedEventRepresents areview_dismissed
event on a given issue or pull request.
ReviewDismissedEvent
Implements
Fields for ReviewDismissedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
dismissalMessage
(String
)
Identifies the optional message associated with thereview_dismissed
event.
dismissalMessageHTML
(String
)
Identifies the optional message associated with the event, rendered to HTML.
id
(ID!
)
The Node ID of the ReviewDismissedEvent object.
previousReviewState
(PullRequestReviewState!
)
Identifies the previous state of the review with thereview_dismissed
event.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
pullRequestCommit
(PullRequestCommit
)
Identifies the commit which caused the review to become stale.
resourcePath
(URI!
)
The HTTP path for this review dismissed event.
review
(PullRequestReview
)
Identifies the review associated with thereview_dismissed
event.
url
(URI!
)
The HTTP URL for this review dismissed event.
ReviewRequestA request for a user to review a pull request.
ReviewRequest
Implements
Fields for ReviewRequest
Name Description
asCodeOwner
(Boolean!
)
Whether this request was created for a code owner.
databaseId
(Int
)
Identifies the primary key from the database.
id
(ID!
)
The Node ID of the ReviewRequest object.
pullRequest
(PullRequest!
)
Identifies the pull request associated with this review request.
requestedReviewer
(RequestedReviewer
)
The reviewer that is requested.
ReviewRequestEdgeAn edge in a connection.
Fields forReviewRequestEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(ReviewRequest
)
The item at the end of the edge.
ReviewRequestRemovedEventRepresents anreview_request_removed
event on a given pull request.
ReviewRequestRemovedEvent
Implements
Fields for ReviewRequestRemovedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the ReviewRequestRemovedEvent object.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
requestedReviewer
(RequestedReviewer
)
Identifies the reviewer whose review request was removed.
ReviewRequestedEventRepresents anreview_requested
event on a given pull request.
ReviewRequestedEvent
Implements
Fields for ReviewRequestedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the ReviewRequestedEvent object.
pullRequest
(PullRequest!
)
PullRequest referenced by event.
requestedReviewer
(RequestedReviewer
)
Identifies the reviewer whose review was requested.
ReviewStatusHovercardContextA hovercard context with a message describing the current code review state of the pull request.
ReviewStatusHovercardContext
Implements
Fields for ReviewStatusHovercardContext
Name Description
message
(String!
)
A string describing this context.
octicon
(String!
)
An octicon to accompany this context.
reviewDecision
(PullRequestReviewDecision
)
The current status of the pull request with respect to code review.
SavedReplyA Saved Reply is text a user can use to reply quickly.
SavedReply
Implements
Fields for SavedReply
Name Description
body
(String!
)
The body of the saved reply.
bodyHTML
(HTML!
)
The saved reply body rendered to HTML.
databaseId
(Int
)
Identifies the primary key from the database.
id
(ID!
)
The Node ID of the SavedReply object.
title
(String!
)
The title of the saved reply.
user
(Actor
)
The user that saved this reply.
SavedReplyConnectionThe connection type for SavedReply.
Fields forSavedReplyConnection
Name Description
edges
([SavedReplyEdge]
)
A list of edges.
nodes
([SavedReply]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
SavedReplyEdgeAn edge in a connection.
Fields forSavedReplyEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(SavedReply
)
The item at the end of the edge.
SearchResultItemConnectionA list of results that matched against a search query. Regardless of the number of matches, a maximum of 1,000 results will be available across all types, potentially split across many pages.
Fields forSearchResultItemConnection
Name Description
codeCount
(Int!
)
The total number of pieces of code that matched the search query. Regardless of the total number of matches, a maximum of 1,000 results will be available across all types.
discussionCount
(Int!
)
The total number of discussions that matched the search query. Regardless of the total number of matches, a maximum of 1,000 results will be available across all types.
edges
([SearchResultItemEdge]
)
A list of edges.
issueCount
(Int!
)
The total number of issues that matched the search query. Regardless of the total number of matches, a maximum of 1,000 results will be available across all types.
nodes
([SearchResultItem]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
repositoryCount
(Int!
)
The total number of repositories that matched the search query. Regardless of the total number of matches, a maximum of 1,000 results will be available across all types.
userCount
(Int!
)
The total number of users that matched the search query. Regardless of the total number of matches, a maximum of 1,000 results will be available across all types.
wikiCount
(Int!
)
The total number of wiki pages that matched the search query. Regardless of the total number of matches, a maximum of 1,000 results will be available across all types.
SecurityAdvisoryA GitHub Security Advisory.
SecurityAdvisory
Implements
Fields for SecurityAdvisory
Name Description
classification
(SecurityAdvisoryClassification!
)
The classification of the advisory.
cvss
(CVSS!
)
The CVSS associated with this advisory.
Warning
cvss
is deprecated.
cvss
will be removed. New cvss_severities
field will now contain both cvss_v3
and cvss_v4
properties. Removal on 2025-10-01 UTC.
cvssSeverities
(CvssSeverities!
)
The CVSS associated with this advisory.
cwes
(CWEConnection!
)
CWEs associated with this Advisory.
Arguments for cwes
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
databaseId
(Int
)
Identifies the primary key from the database.
description
(String!
)
This is a long plaintext description of the advisory.
epss
(EPSS
)
The Exploit Prediction Scoring System.
ghsaId
(String!
)
The GitHub Security Advisory ID.
id
(ID!
)
The Node ID of the SecurityAdvisory object.
identifiers
([SecurityAdvisoryIdentifier!]!
)
A list of identifiers for this advisory.
notificationsPermalink
(URI
)
The permalink for the advisory's dependabot alerts page.
origin
(String!
)
The organization that originated the advisory.
permalink
(URI
)
The permalink for the advisory.
publishedAt
(DateTime!
)
When the advisory was published.
references
([SecurityAdvisoryReference!]!
)
A list of references for this advisory.
severity
(SecurityAdvisorySeverity!
)
The severity of the advisory.
summary
(String!
)
A short plaintext summary of the advisory.
updatedAt
(DateTime!
)
When the advisory was last updated.
vulnerabilities
(SecurityVulnerabilityConnection!
)
Vulnerabilities associated with this Advisory.
Arguments for vulnerabilities
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
classifications
([SecurityAdvisoryClassification!]
)
A list of advisory classifications to filter vulnerabilities by.
ecosystem
(SecurityAdvisoryEcosystem
)
An ecosystem to filter vulnerabilities by.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SecurityVulnerabilityOrder
)
Ordering options for the returned topics.
package
(String
)
A package name to filter vulnerabilities by.
severities
([SecurityAdvisorySeverity!]
)
A list of severities to filter vulnerabilities by.
withdrawnAt
(DateTime
)
When the advisory was withdrawn, if it has been withdrawn.
SecurityAdvisoryIdentifierA GitHub Security Advisory Identifier.
Fields forSecurityAdvisoryIdentifier
Name Description
type
(String!
)
The identifier type, e.g. GHSA, CVE.
value
(String!
)
The identifier.
SecurityAdvisoryReferenceA GitHub Security Advisory Reference.
Fields forSecurityAdvisoryReference
Name Description
url
(URI!
)
A publicly accessible reference.
SecurityVulnerabilityAn individual vulnerability within an Advisory.
Fields forSecurityVulnerability
Name Description
advisory
(SecurityAdvisory!
)
The Advisory associated with this Vulnerability.
firstPatchedVersion
(SecurityAdvisoryPackageVersion
)
The first version containing a fix for the vulnerability.
package
(SecurityAdvisoryPackage!
)
A description of the vulnerable package.
severity
(SecurityAdvisorySeverity!
)
The severity of the vulnerability within this package.
updatedAt
(DateTime!
)
When the vulnerability was last updated.
vulnerableVersionRange
(String!
)
A string that describes the vulnerable package versions. This string follows a basic syntax with a few forms.
= 0.2.0
denotes a single vulnerable version.<= 1.0.8
denotes a version range up to and including the specified version< 0.1.11
denotes a version range up to, but excluding, the specified version>= 4.3.0, < 4.3.5
denotes a version range with a known minimum and maximum version.>= 0.0.1
denotes a version range with a known minimum, but no known maximum.Represents an S/MIME signature on a Commit or Tag.
SmimeSignature
Implements
Fields for SmimeSignature
Name Description
email
(String!
)
Email used to sign this object.
isValid
(Boolean!
)
True if the signature is valid and verified by GitHub.
payload
(String!
)
Payload for GPG signing object. Raw ODB object without the signature header.
signature
(String!
)
ASCII-armored signature header from object.
signer
(User
)
GitHub user corresponding to the email signing this commit.
state
(GitSignatureState!
)
The state of this signature. VALID
if signature is valid and verified by GitHub, otherwise represents reason why signature is considered invalid.
verifiedAt
(DateTime
)
The date the signature was verified, if valid.
wasSignedByGitHub
(Boolean!
)
True if the signature was made with GitHub's signing key.
Social media profile associated with a user.
Fields forSocialAccount
Name Description
displayName
(String!
)
Name of the social media account as it appears on the profile.
provider
(SocialAccountProvider!
)
Software or company that hosts the social media account.
url
(URI!
)
URL of the social media account.
The connection type for SocialAccount.
Fields forSocialAccountConnection
An edge in a connection.
Fields forSocialAccountEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(SocialAccount
)
The item at the end of the edge.
A GitHub account and the total amount in USD they've paid for sponsorships to a particular maintainer. Does not include payments made via Patreon.
Fields forSponsorAndLifetimeValue
Name Description
amountInCents
(Int!
)
The amount in cents.
formattedAmount
(String!
)
The amount in USD, formatted as a string.
sponsor
(Sponsorable!
)
The sponsor's GitHub account.
sponsorable
(Sponsorable!
)
The maintainer's GitHub account.
The connection type for SponsorAndLifetimeValue.
Fields forSponsorAndLifetimeValueConnection
An edge in a connection.
Fields forSponsorAndLifetimeValueEdge
A list of users and organizations sponsoring someone via GitHub Sponsors.
Fields forSponsorConnection
Name Description
edges
([SponsorEdge]
)
A list of edges.
nodes
([Sponsor]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
Represents a user or organization who is sponsoring someone in GitHub Sponsors.
Fields forSponsorEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Sponsor
)
The item at the end of the edge.
The connection type for SponsorableItem.
Fields forSponsorableItemConnection
An edge in a connection.
Fields forSponsorableItemEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(SponsorableItem
)
The item at the end of the edge.
An event related to sponsorship activity.
SponsorsActivity
Implements
Fields for SponsorsActivity
Name Description
action
(SponsorsActivityAction!
)
What action this activity indicates took place.
currentPrivacyLevel
(SponsorshipPrivacy
)
The sponsor's current privacy level.
id
(ID!
)
The Node ID of the SponsorsActivity object.
paymentSource
(SponsorshipPaymentSource
)
The platform that was used to pay for the sponsorship.
previousSponsorsTier
(SponsorsTier
)
The tier that the sponsorship used to use, for tier change events.
sponsor
(Sponsor
)
The user or organization who triggered this activity and was/is sponsoring the sponsorable.
sponsorable
(Sponsorable!
)
The user or organization that is being sponsored, the maintainer.
sponsorsTier
(SponsorsTier
)
The associated sponsorship tier.
timestamp
(DateTime
)
The timestamp of this event.
viaBulkSponsorship
(Boolean!
)
Was this sponsorship made alongside other sponsorships at the same time from the same sponsor?.
The connection type for SponsorsActivity.
Fields forSponsorsActivityConnection
An edge in a connection.
Fields forSponsorsActivityEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(SponsorsActivity
)
The item at the end of the edge.
A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.
Fields forSponsorsGoal
Name Description
description
(String
)
A description of the goal from the maintainer.
kind
(SponsorsGoalKind!
)
What the objective of this goal is.
percentComplete
(Int!
)
The percentage representing how complete this goal is, between 0-100.
targetValue
(Int!
)
What the goal amount is. Represents an amount in USD for monthly sponsorship amount goals. Represents a count of unique sponsors for total sponsors count goals.
title
(String!
)
A brief summary of the kind and target value of this goal.
A GitHub Sponsors listing.
SponsorsListing
Implements
Fields for SponsorsListing
Name Description
activeGoal
(SponsorsGoal
)
The current goal the maintainer is trying to reach with GitHub Sponsors, if any.
activeStripeConnectAccount
(StripeConnectAccount
)
The Stripe Connect account currently in use for payouts for this Sponsors listing, if any. Will only return a value when queried by the maintainer themselves, or by an admin of the sponsorable organization.
billingCountryOrRegion
(String
)
The name of the country or region with the maintainer's bank account or fiscal host. Will only return a value when queried by the maintainer themselves, or by an admin of the sponsorable organization.
contactEmailAddress
(String
)
The email address used by GitHub to contact the sponsorable about their GitHub Sponsors profile. Will only return a value when queried by the maintainer themselves, or by an admin of the sponsorable organization.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
dashboardResourcePath
(URI!
)
The HTTP path for the Sponsors dashboard for this Sponsors listing.
dashboardUrl
(URI!
)
The HTTP URL for the Sponsors dashboard for this Sponsors listing.
featuredItems
([SponsorsListingFeaturedItem!]!
)
The records featured on the GitHub Sponsors profile.
Arguments for featuredItems
featureableTypes
([SponsorsListingFeaturedItemFeatureableType!]
)
The types of featured items to return.
fiscalHost
(Organization
)
The fiscal host used for payments, if any. Will only return a value when queried by the maintainer themselves, or by an admin of the sponsorable organization.
fullDescription
(String!
)
The full description of the listing.
fullDescriptionHTML
(HTML!
)
The full description of the listing rendered to HTML.
id
(ID!
)
The Node ID of the SponsorsListing object.
isPublic
(Boolean!
)
Whether this listing is publicly visible.
name
(String!
)
The listing's full name.
nextPayoutDate
(Date
)
A future date on which this listing is eligible to receive a payout.
residenceCountryOrRegion
(String
)
The name of the country or region where the maintainer resides. Will only return a value when queried by the maintainer themselves, or by an admin of the sponsorable organization.
resourcePath
(URI!
)
The HTTP path for this Sponsors listing.
shortDescription
(String!
)
The short description of the listing.
slug
(String!
)
The short name of the listing.
sponsorable
(Sponsorable!
)
The entity this listing represents who can be sponsored on GitHub Sponsors.
tiers
(SponsorsTierConnection
)
The tiers for this GitHub Sponsors profile.
Arguments for tiers
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
includeUnpublished
(Boolean
)
Whether to include tiers that aren't published. Only admins of the Sponsors listing can see draft tiers. Only admins of the Sponsors listing and viewers who are currently sponsoring on a retired tier can see those retired tiers. Defaults to including only published tiers, which are visible to anyone who can see the GitHub Sponsors profile.
The default value is false
.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorsTierOrder
)
Ordering options for Sponsors tiers returned from the connection.
url
(URI!
)
The HTTP URL for this Sponsors listing.
A record that is promoted on a GitHub Sponsors profile.
SponsorsListingFeaturedItem
Implements
Fields for SponsorsListingFeaturedItem
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
description
(String
)
Will either be a description from the sponsorable maintainer about why they featured this item, or the item's description itself, such as a user's bio from their GitHub profile page.
featureable
(SponsorsListingFeatureableItem!
)
The record that is featured on the GitHub Sponsors profile.
id
(ID!
)
The Node ID of the SponsorsListingFeaturedItem object.
position
(Int!
)
The position of this featured item on the GitHub Sponsors profile with a lower position indicating higher precedence. Starts at 1.
sponsorsListing
(SponsorsListing!
)
The GitHub Sponsors profile that features this record.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
A GitHub Sponsors tier associated with a GitHub Sponsors listing.
SponsorsTier
Implements
Fields for SponsorsTier
Name Description
adminInfo
(SponsorsTierAdminInfo
)
SponsorsTier information only visible to users that can administer the associated Sponsors listing.
closestLesserValueTier
(SponsorsTier
)
Get a different tier for this tier's maintainer that is at the same frequency as this tier but with an equal or lesser cost. Returns the published tier with the monthly price closest to this tier's without going over.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
description
(String!
)
The description of the tier.
descriptionHTML
(HTML!
)
The tier description rendered to HTML.
id
(ID!
)
The Node ID of the SponsorsTier object.
isCustomAmount
(Boolean!
)
Whether this tier was chosen at checkout time by the sponsor rather than defined ahead of time by the maintainer who manages the Sponsors listing.
isOneTime
(Boolean!
)
Whether this tier is only for use with one-time sponsorships.
monthlyPriceInCents
(Int!
)
How much this tier costs per month in cents.
monthlyPriceInDollars
(Int!
)
How much this tier costs per month in USD.
name
(String!
)
The name of the tier.
sponsorsListing
(SponsorsListing!
)
The sponsors listing that this tier belongs to.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
SponsorsTier information only visible to users that can administer the associated Sponsors listing.
Fields forSponsorsTierAdminInfo
Name Description
isDraft
(Boolean!
)
Indicates whether this tier is still a work in progress by the sponsorable and not yet published to the associated GitHub Sponsors profile. Draft tiers cannot be used for new sponsorships and will not be in use on existing sponsorships. Draft tiers cannot be seen by anyone but the admins of the GitHub Sponsors profile.
isPublished
(Boolean!
)
Indicates whether this tier is published to the associated GitHub Sponsors profile. Published tiers are visible to anyone who can see the GitHub Sponsors profile, and are available for use in sponsorships if the GitHub Sponsors profile is publicly visible.
isRetired
(Boolean!
)
Indicates whether this tier has been retired from the associated GitHub Sponsors profile. Retired tiers are no longer shown on the GitHub Sponsors profile and cannot be chosen for new sponsorships. Existing sponsorships may still use retired tiers if the sponsor selected the tier before it was retired.
sponsorships
(SponsorshipConnection!
)
The sponsorships using this tier.
Arguments for sponsorships
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
includePrivate
(Boolean
)
Whether or not to return private sponsorships using this tier. Defaults to only returning public sponsorships on this tier.
The default value is false
.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorshipOrder
)
Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.
The connection type for SponsorsTier.
Fields forSponsorsTierConnection
Name Description
edges
([SponsorsTierEdge]
)
A list of edges.
nodes
([SponsorsTier]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
An edge in a connection.
Fields forSponsorsTierEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(SponsorsTier
)
The item at the end of the edge.
A sponsorship relationship between a sponsor and a maintainer.
Sponsorship
Implements
Fields for Sponsorship
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the Sponsorship object.
isActive
(Boolean!
)
Whether the sponsorship is active. False implies the sponsor is a past sponsor of the maintainer, while true implies they are a current sponsor.
isOneTimePayment
(Boolean!
)
Whether this sponsorship represents a one-time payment versus a recurring sponsorship.
isSponsorOptedIntoEmail
(Boolean
)
Whether the sponsor has chosen to receive sponsorship update emails sent from the sponsorable. Only returns a non-null value when the viewer has permission to know this.
maintainer
(User!
)
The entity that is being sponsored.
Warning
maintainer
is deprecated.
Sponsorship.maintainer
will be removed. Use Sponsorship.sponsorable
instead. Removal on 2020-04-01 UTC.
paymentSource
(SponsorshipPaymentSource
)
The platform that was most recently used to pay for the sponsorship.
privacyLevel
(SponsorshipPrivacy!
)
The privacy level for this sponsorship.
sponsor
(User
)
The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.
Warning
sponsor
is deprecated.
Sponsorship.sponsor
will be removed. Use Sponsorship.sponsorEntity
instead. Removal on 2020-10-01 UTC.
sponsorEntity
(Sponsor
)
The user or organization that is sponsoring, if you have permission to view them.
sponsorable
(Sponsorable!
)
The entity that is being sponsored.
tier
(SponsorsTier
)
The associated sponsorship tier.
tierSelectedAt
(DateTime
)
Identifies the date and time when the current tier was chosen for this sponsorship.
A list of sponsorships either from the subject or received by the subject.
Fields forSponsorshipConnection
Name Description
edges
([SponsorshipEdge]
)
A list of edges.
nodes
([Sponsorship]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
totalRecurringMonthlyPriceInCents
(Int!
)
The total amount in cents of all recurring sponsorships in the connection whose amount you can view. Does not include one-time sponsorships.
totalRecurringMonthlyPriceInDollars
(Int!
)
The total amount in USD of all recurring sponsorships in the connection whose amount you can view. Does not include one-time sponsorships.
An edge in a connection.
Fields forSponsorshipEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Sponsorship
)
The item at the end of the edge.
An update sent to sponsors of a user or organization on GitHub Sponsors.
SponsorshipNewsletter
Implements
Fields for SponsorshipNewsletter
Name Description
author
(User
)
The author of the newsletter.
body
(String!
)
The contents of the newsletter, the message the sponsorable wanted to give.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the SponsorshipNewsletter object.
isPublished
(Boolean!
)
Indicates if the newsletter has been made available to sponsors.
sponsorable
(Sponsorable!
)
The user or organization this newsletter is from.
subject
(String!
)
The subject of the newsletter, what it's about.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
The connection type for SponsorshipNewsletter.
Fields forSponsorshipNewsletterConnection
An edge in a connection.
Fields forSponsorshipNewsletterEdge
SshSignature
Represents an SSH signature on a Commit or Tag.
SshSignature
Implements
Fields for SshSignature
Name Description
email
(String!
)
Email used to sign this object.
isValid
(Boolean!
)
True if the signature is valid and verified by GitHub.
keyFingerprint
(String
)
Hex-encoded fingerprint of the key that signed this object.
payload
(String!
)
Payload for GPG signing object. Raw ODB object without the signature header.
signature
(String!
)
ASCII-armored signature header from object.
signer
(User
)
GitHub user corresponding to the email signing this commit.
state
(GitSignatureState!
)
The state of this signature. VALID
if signature is valid and verified by GitHub, otherwise represents reason why signature is considered invalid.
verifiedAt
(DateTime
)
The date the signature was verified, if valid.
wasSignedByGitHub
(Boolean!
)
True if the signature was made with GitHub's signing key.
StargazerConnectionThe connection type for User.
Fields forStargazerConnection
Name Description
edges
([StargazerEdge]
)
A list of edges.
nodes
([User]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
StargazerEdgeRepresents a user that's starred a repository.
Fields forStargazerEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(User!
)
starredAt
(DateTime!
)
Identifies when the item was starred.
StarredRepositoryConnectionThe connection type for Repository.
Fields forStarredRepositoryConnection
Name Description
edges
([StarredRepositoryEdge]
)
A list of edges.
isOverLimit
(Boolean!
)
Is the list of stars for this user truncated? This is true for users that have many stars.
nodes
([Repository]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
StatusRepresents a commit status.
Status
Implements
Fields for Status
Name Description
combinedContexts
(StatusCheckRollupContextConnection!
)
A list of status contexts and check runs for this commit.
Arguments for combinedContexts
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
commit
(Commit
)
The commit this status is attached to.
context
(StatusContext
)
Looks up an individual status context by context name.
Arguments for context
name
(String!
)
The context name.
contexts
([StatusContext!]!
)
The individual status contexts for this commit.
id
(ID!
)
The Node ID of the Status object.
state
(StatusState!
)
The combined commit status.
StatusCheckConfigurationRequired status check.
Fields forStatusCheckConfiguration
Name Description
context
(String!
)
The status check context name that must be present on the commit.
integrationId
(Int
)
The optional integration ID that this status check must originate from.
StatusCheckRollupRepresents the rollup for both the check runs and status for a commit.
StatusCheckRollup
Implements
Fields for StatusCheckRollup
Name Description
commit
(Commit
)
The commit the status and check runs are attached to.
contexts
(StatusCheckRollupContextConnection!
)
A list of status contexts and check runs for this commit.
Arguments for contexts
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
id
(ID!
)
The Node ID of the StatusCheckRollup object.
state
(StatusState!
)
The combined status for the commit.
StatusContextRepresents an individual commit status context.
StatusContext
Implements
Fields for StatusContext
Name Description
avatarUrl
(URI
)
The avatar of the OAuth application or the user that created the status.
Arguments for avatarUrl
size
(Int
)
The size of the resulting square image.
The default value is 40
.
commit
(Commit
)
This commit this status context is attached to.
context
(String!
)
The name of this status context.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
creator
(Actor
)
The actor who created this status context.
description
(String
)
The description for this status context.
id
(ID!
)
The Node ID of the StatusContext object.
isRequired
(Boolean!
)
Whether this is required to pass before merging for a specific pull request.
Arguments for isRequired
pullRequestId
(ID
)
The id of the pull request this is required for.
pullRequestNumber
(Int
)
The number of the pull request this is required for.
state
(StatusState!
)
The state of this status context.
targetUrl
(URI
)
The URL for this status context.
StatusContextStateCountRepresents a count of the state of a status context.
Fields forStatusContextStateCount
Name Description
count
(Int!
)
The number of statuses with this state.
state
(StatusState!
)
The state of a status context.
StripeConnectAccountA Stripe Connect account for receiving sponsorship funds from GitHub Sponsors.
Fields forStripeConnectAccount
Name Description
accountId
(String!
)
The account number used to identify this Stripe Connect account.
billingCountryOrRegion
(String
)
The name of the country or region of an external account, such as a bank account, tied to the Stripe Connect account. Will only return a value when queried by the maintainer of the associated GitHub Sponsors profile themselves, or by an admin of the sponsorable organization.
countryOrRegion
(String
)
The name of the country or region of the Stripe Connect account. Will only return a value when queried by the maintainer of the associated GitHub Sponsors profile themselves, or by an admin of the sponsorable organization.
isActive
(Boolean!
)
Whether this Stripe Connect account is currently in use for the associated GitHub Sponsors profile.
sponsorsListing
(SponsorsListing!
)
The GitHub Sponsors profile associated with this Stripe Connect account.
stripeDashboardUrl
(URI!
)
The URL to access this Stripe Connect account on Stripe's website.
SubIssueAddedEventRepresents asub_issue_added
event on a given issue.
SubIssueAddedEvent
Implements
Fields for SubIssueAddedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the SubIssueAddedEvent object.
subIssue
(Issue
)
The sub-issue added.
SubIssueRemovedEventRepresents asub_issue_removed
event on a given issue.
SubIssueRemovedEvent
Implements
Fields for SubIssueRemovedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the SubIssueRemovedEvent object.
subIssue
(Issue
)
The sub-issue removed.
SubIssuesSummarySummary of the state of an issue's sub-issues.
Fields forSubIssuesSummary
Name Description
completed
(Int!
)
Count of completed sub-issues.
percentCompleted
(Int!
)
Percent of sub-issues which are completed.
total
(Int!
)
Count of total number of sub-issues.
SubmoduleA pointer to a repository at a specific revision embedded inside another repository.
Fields forSubmodule
Name Description
branch
(String
)
The branch of the upstream submodule for tracking updates.
gitUrl
(URI!
)
The git URL of the submodule repository.
name
(String!
)
The name of the submodule in .gitmodules.
nameRaw
(Base64String!
)
The name of the submodule in .gitmodules (Base64-encoded).
path
(String!
)
The path in the superproject that this submodule is located in.
pathRaw
(Base64String!
)
The path in the superproject that this submodule is located in (Base64-encoded).
subprojectCommitOid
(GitObjectID
)
The commit revision of the subproject repository being tracked by the submodule.
SubmoduleConnectionThe connection type for Submodule.
Fields forSubmoduleConnection
Name Description
edges
([SubmoduleEdge]
)
A list of edges.
nodes
([Submodule]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
SubmoduleEdgeAn edge in a connection.
Fields forSubmoduleEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Submodule
)
The item at the end of the edge.
SubscribedEventRepresents asubscribed
event on a given Subscribable
.
SubscribedEvent
Implements
Fields for SubscribedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the SubscribedEvent object.
subscribable
(Subscribable!
)
Object referenced by event.
SuggestedReviewerA suggestion to review a pull request based on a user's commit history and review comments.
Fields forSuggestedReviewer
Name Description
isAuthor
(Boolean!
)
Is this suggestion based on past commits?.
isCommenter
(Boolean!
)
Is this suggestion based on past review comments?.
reviewer
(User!
)
Identifies the user suggested to review the pull request.
TagRepresents a Git tag.
Tag
Implements
Fields for Tag
Name Description
abbreviatedOid
(String!
)
An abbreviated version of the Git object ID.
commitResourcePath
(URI!
)
The HTTP path for this Git object.
commitUrl
(URI!
)
The HTTP URL for this Git object.
id
(ID!
)
The Node ID of the Tag object.
message
(String
)
The Git tag message.
name
(String!
)
The Git tag name.
oid
(GitObjectID!
)
The Git object ID.
repository
(Repository!
)
The Repository the Git object belongs to.
tagger
(GitActor
)
Details about the tag author.
target
(GitObject!
)
The Git object the tag points to.
TagNamePatternParametersParameters to be used for the tag_name_pattern rule.
Fields forTagNamePatternParameters
Name Description
name
(String
)
How this rule will appear to users.
negate
(Boolean!
)
If true, the rule will fail if the pattern matches.
operator
(String!
)
The operator to use for matching.
pattern
(String!
)
The pattern to match with.
TeamA team of users in an organization.
Team
Implements
Fields for Team
Name Description
ancestors
(TeamConnection!
)
A list of teams that are ancestors of this team.
Arguments for ancestors
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
avatarUrl
(URI
)
A URL pointing to the team's avatar.
Arguments for avatarUrl
size
(Int
)
The size in pixels of the resulting square image.
The default value is 400
.
childTeams
(TeamConnection!
)
List of child teams belonging to this team.
Arguments for childTeams
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
immediateOnly
(Boolean
)
Whether to list immediate child teams or all descendant child teams.
The default value is true
.
last
(Int
)
Returns the last n elements from the list.
orderBy
(TeamOrder
)
Order for connection.
userLogins
([String!]
)
User logins to filter by.
combinedSlug
(String!
)
The slug corresponding to the organization and team.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
description
(String
)
The description of the team.
discussion
(TeamDiscussion
)
Find a team discussion by its number.
Arguments for discussion
number
(Int!
)
The sequence number of the discussion to find.
discussions
(TeamDiscussionConnection!
)
A list of team discussions.
Arguments for discussions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
isPinned
(Boolean
)
If provided, filters discussions according to whether or not they are pinned.
last
(Int
)
Returns the last n elements from the list.
orderBy
(TeamDiscussionOrder
)
Order for connection.
discussionsResourcePath
(URI!
)
The HTTP path for team discussions.
discussionsUrl
(URI!
)
The HTTP URL for team discussions.
editTeamResourcePath
(URI!
)
The HTTP path for editing this team.
editTeamUrl
(URI!
)
The HTTP URL for editing this team.
id
(ID!
)
The Node ID of the Team object.
invitations
(OrganizationInvitationConnection
)
A list of pending invitations for users to this team.
Arguments for invitations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
memberStatuses
(UserStatusConnection!
)
Get the status messages members of this entity have set that are either public or visible only to the organization.
Arguments for memberStatuses
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(UserStatusOrder
)
Ordering options for user statuses returned from the connection.
members
(TeamMemberConnection!
)
A list of users who are members of this team.
Arguments for members
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
membership
(TeamMembershipType
)
Filter by membership type.
The default value is ALL
.
orderBy
(TeamMemberOrder
)
Order for the connection.
query
(String
)
The search string to look for.
role
(TeamMemberRole
)
Filter by team member role.
membersResourcePath
(URI!
)
The HTTP path for the team' members.
membersUrl
(URI!
)
The HTTP URL for the team' members.
name
(String!
)
The name of the team.
newTeamResourcePath
(URI!
)
The HTTP path creating a new team.
newTeamUrl
(URI!
)
The HTTP URL creating a new team.
notificationSetting
(TeamNotificationSetting!
)
The notification setting that the team has set.
organization
(Organization!
)
The organization that owns this team.
parentTeam
(Team
)
The parent team of the team.
privacy
(TeamPrivacy!
)
The level of privacy the team has.
projectV2
(ProjectV2
)
Finds and returns the project according to the provided project number.
Arguments for projectV2
number
(Int!
)
The Project number.
projectsV2
(ProjectV2Connection!
)
List of projects this team has collaborator access to.
Arguments for projectsV2
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
filterBy
(ProjectV2Filters
)
Filtering options for projects returned from this connection.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
minPermissionLevel
(ProjectV2PermissionLevel
)
Filter projects based on user role.
The default value is READ
.
orderBy
(ProjectV2Order
)
How to order the returned projects.
query
(String
)
The query to search projects by.
The default value is .
repositories
(TeamRepositoryConnection!
)
A list of repositories this team has access to.
Arguments for repositories
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(TeamRepositoryOrder
)
Order for the connection.
query
(String
)
The search string to look for. Repositories will be returned where the name contains your search string.
repositoriesResourcePath
(URI!
)
The HTTP path for this team's repositories.
repositoriesUrl
(URI!
)
The HTTP URL for this team's repositories.
resourcePath
(URI!
)
The HTTP path for this team.
reviewRequestDelegationAlgorithm
(TeamReviewAssignmentAlgorithm
)
What algorithm is used for review assignment for this team.
reviewRequestDelegationEnabled
(Boolean!
)
True if review assignment is enabled for this team.
reviewRequestDelegationMemberCount
(Int
)
How many team members are required for review assignment for this team.
reviewRequestDelegationNotifyTeam
(Boolean!
)
When assigning team members via delegation, whether the entire team should be notified as well.
slug
(String!
)
The slug corresponding to the team.
teamsResourcePath
(URI!
)
The HTTP path for this team's teams.
teamsUrl
(URI!
)
The HTTP URL for this team's teams.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this team.
viewerCanAdminister
(Boolean!
)
Team is adminable by the viewer.
viewerCanSubscribe
(Boolean!
)
Check if the viewer is able to change their subscription status for the repository.
viewerSubscription
(SubscriptionState
)
Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
TeamAddMemberAuditEntryAudit log entry for a team.add_member event.
TeamAddMemberAuditEntry
Implements
Fields for TeamAddMemberAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the TeamAddMemberAuditEntry object.
isLdapMapped
(Boolean
)
Whether the team was mapped to an LDAP Group.
Warning
isLdapMapped
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
team
(Team
)
The team associated with the action.
teamName
(String
)
The name of the team.
teamResourcePath
(URI
)
The HTTP path for this team.
teamUrl
(URI
)
The HTTP URL for this team.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
TeamAddRepositoryAuditEntryAudit log entry for a team.add_repository event.
TeamAddRepositoryAuditEntry
Implements
Fields for TeamAddRepositoryAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the TeamAddRepositoryAuditEntry object.
isLdapMapped
(Boolean
)
Whether the team was mapped to an LDAP Group.
Warning
isLdapMapped
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
team
(Team
)
The team associated with the action.
teamName
(String
)
The name of the team.
teamResourcePath
(URI
)
The HTTP path for this team.
teamUrl
(URI
)
The HTTP URL for this team.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
TeamChangeParentTeamAuditEntryAudit log entry for a team.change_parent_team event.
TeamChangeParentTeamAuditEntry
Implements
Fields for TeamChangeParentTeamAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the TeamChangeParentTeamAuditEntry object.
isLdapMapped
(Boolean
)
Whether the team was mapped to an LDAP Group.
Warning
isLdapMapped
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
parentTeam
(Team
)
The new parent team.
Warning
parentTeam
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
parentTeamName
(String
)
The name of the new parent team.
Warning
parentTeamName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
parentTeamNameWas
(String
)
The name of the former parent team.
Warning
parentTeamNameWas
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
parentTeamResourcePath
(URI
)
The HTTP path for the parent team.
Warning
parentTeamResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
parentTeamUrl
(URI
)
The HTTP URL for the parent team.
Warning
parentTeamUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
parentTeamWas
(Team
)
The former parent team.
Warning
parentTeamWas
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
parentTeamWasResourcePath
(URI
)
The HTTP path for the previous parent team.
Warning
parentTeamWasResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
parentTeamWasUrl
(URI
)
The HTTP URL for the previous parent team.
Warning
parentTeamWasUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
team
(Team
)
The team associated with the action.
teamName
(String
)
The name of the team.
teamResourcePath
(URI
)
The HTTP path for this team.
teamUrl
(URI
)
The HTTP URL for this team.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
TeamConnectionThe connection type for Team.
Fields forTeamConnection
Name Description
edges
([TeamEdge]
)
A list of edges.
nodes
([Team]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
TeamDiscussionA team discussion.
TeamDiscussion
Implements
Fields for TeamDiscussion
Name Description
author
(Actor
)
The actor who authored the comment.
authorAssociation
(CommentAuthorAssociation!
)
Author's association with the discussion's team.
Warning
authorAssociation
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
body
(String!
)
The body as Markdown.
bodyHTML
(HTML!
)
The body rendered to HTML.
bodyText
(String!
)
The body rendered to text.
bodyVersion
(String!
)
Identifies the discussion body hash.
Warning
bodyVersion
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
comments
(TeamDiscussionCommentConnection!
)
A list of comments on this discussion.
Warning
comments
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
Arguments for comments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
fromComment
(Int
)
When provided, filters the connection such that results begin with the comment with this number.
last
(Int
)
Returns the last n elements from the list.
orderBy
(TeamDiscussionCommentOrder
)
Order for connection.
commentsResourcePath
(URI!
)
The HTTP path for discussion comments.
Warning
commentsResourcePath
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
commentsUrl
(URI!
)
The HTTP URL for discussion comments.
Warning
commentsUrl
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
createdViaEmail
(Boolean!
)
Check if this comment was created via an email reply.
databaseId
(Int
)
Identifies the primary key from the database.
editor
(Actor
)
The actor who edited the comment.
id
(ID!
)
The Node ID of the TeamDiscussion object.
includesCreatedEdit
(Boolean!
)
Check if this comment was edited and includes an edit with the creation data.
isPinned
(Boolean!
)
Whether or not the discussion is pinned.
Warning
isPinned
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
isPrivate
(Boolean!
)
Whether or not the discussion is only visible to team members and organization owners.
Warning
isPrivate
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
lastEditedAt
(DateTime
)
The moment the editor made the last edit.
number
(Int!
)
Identifies the discussion within its team.
Warning
number
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
publishedAt
(DateTime
)
Identifies when the comment was published at.
reactionGroups
([ReactionGroup!]
)
A list of reactions grouped by content left on the subject.
reactions
(ReactionConnection!
)
A list of Reactions left on the Issue.
Arguments for reactions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
content
(ReactionContent
)
Allows filtering Reactions by emoji.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ReactionOrder
)
Allows specifying the order in which reactions are returned.
resourcePath
(URI!
)
The HTTP path for this discussion.
Warning
resourcePath
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
team
(Team!
)
The team that defines the context of this discussion.
Warning
team
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
title
(String!
)
The title of the discussion.
Warning
title
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this discussion.
Warning
url
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
userContentEdits
(UserContentEditConnection
)
A list of edits to this content.
Arguments for userContentEdits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
viewerCanDelete
(Boolean!
)
Check if the current viewer can delete this object.
viewerCanPin
(Boolean!
)
Whether or not the current viewer can pin this discussion.
Warning
viewerCanPin
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
viewerCanReact
(Boolean!
)
Can user react to this subject.
viewerCanSubscribe
(Boolean!
)
Check if the viewer is able to change their subscription status for the repository.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
viewerCannotUpdateReasons
([CommentCannotUpdateReason!]!
)
Reasons why the current viewer can not update this comment.
viewerDidAuthor
(Boolean!
)
Did the viewer author this comment.
viewerSubscription
(SubscriptionState
)
Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
A comment on a team discussion.
TeamDiscussionComment
Implements
Fields for TeamDiscussionComment
Name Description
author
(Actor
)
The actor who authored the comment.
authorAssociation
(CommentAuthorAssociation!
)
Author's association with the comment's team.
Warning
authorAssociation
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
body
(String!
)
The body as Markdown.
bodyHTML
(HTML!
)
The body rendered to HTML.
bodyText
(String!
)
The body rendered to text.
bodyVersion
(String!
)
The current version of the body content.
Warning
bodyVersion
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
createdViaEmail
(Boolean!
)
Check if this comment was created via an email reply.
databaseId
(Int
)
Identifies the primary key from the database.
discussion
(TeamDiscussion!
)
The discussion this comment is about.
Warning
discussion
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
editor
(Actor
)
The actor who edited the comment.
id
(ID!
)
The Node ID of the TeamDiscussionComment object.
includesCreatedEdit
(Boolean!
)
Check if this comment was edited and includes an edit with the creation data.
lastEditedAt
(DateTime
)
The moment the editor made the last edit.
number
(Int!
)
Identifies the comment number.
Warning
number
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
publishedAt
(DateTime
)
Identifies when the comment was published at.
reactionGroups
([ReactionGroup!]
)
A list of reactions grouped by content left on the subject.
reactions
(ReactionConnection!
)
A list of Reactions left on the Issue.
Arguments for reactions
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
content
(ReactionContent
)
Allows filtering Reactions by emoji.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ReactionOrder
)
Allows specifying the order in which reactions are returned.
resourcePath
(URI!
)
The HTTP path for this comment.
Warning
resourcePath
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this comment.
Warning
url
is deprecated.
The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.
userContentEdits
(UserContentEditConnection
)
A list of edits to this content.
Arguments for userContentEdits
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
viewerCanDelete
(Boolean!
)
Check if the current viewer can delete this object.
viewerCanReact
(Boolean!
)
Can user react to this subject.
viewerCanUpdate
(Boolean!
)
Check if the current viewer can update this object.
viewerCannotUpdateReasons
([CommentCannotUpdateReason!]!
)
Reasons why the current viewer can not update this comment.
viewerDidAuthor
(Boolean!
)
Did the viewer author this comment.
The connection type for TeamDiscussionComment.
Fields forTeamDiscussionCommentConnection
An edge in a connection.
Fields forTeamDiscussionCommentEdge
TeamEdge
An edge in a connection.
Fields forTeamEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(Team
)
The item at the end of the edge.
TeamMemberConnectionThe connection type for User.
Fields forTeamMemberConnection
Name Description
edges
([TeamMemberEdge]
)
A list of edges.
nodes
([User]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
TeamMemberEdgeRepresents a user who is a member of a team.
Fields forTeamMemberEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
memberAccessResourcePath
(URI!
)
The HTTP path to the organization's member access page.
memberAccessUrl
(URI!
)
The HTTP URL to the organization's member access page.
node
(User!
)
role
(TeamMemberRole!
)
The role the member has on the team.
TeamRemoveMemberAuditEntryAudit log entry for a team.remove_member event.
TeamRemoveMemberAuditEntry
Implements
Fields for TeamRemoveMemberAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the TeamRemoveMemberAuditEntry object.
isLdapMapped
(Boolean
)
Whether the team was mapped to an LDAP Group.
Warning
isLdapMapped
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
team
(Team
)
The team associated with the action.
teamName
(String
)
The name of the team.
teamResourcePath
(URI
)
The HTTP path for this team.
teamUrl
(URI
)
The HTTP URL for this team.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
TeamRemoveRepositoryAuditEntryAudit log entry for a team.remove_repository event.
TeamRemoveRepositoryAuditEntry
Implements
Fields for TeamRemoveRepositoryAuditEntry
Name Description
action
(String!
)
The action name.
Warning
action
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actor
(AuditEntryActor
)
The user who initiated the action.
Warning
actor
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorIp
(String
)
The IP address of the actor.
Warning
actorIp
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLocation
(ActorLocation
)
A readable representation of the actor's location.
Warning
actorLocation
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorLogin
(String
)
The username of the user who initiated the action.
Warning
actorLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorResourcePath
(URI
)
The HTTP path for the actor.
Warning
actorResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
actorUrl
(URI
)
The HTTP URL for the actor.
Warning
actorUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
createdAt
(PreciseDateTime!
)
The time the action was initiated.
Warning
createdAt
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
id
(ID!
)
The Node ID of the TeamRemoveRepositoryAuditEntry object.
isLdapMapped
(Boolean
)
Whether the team was mapped to an LDAP Group.
Warning
isLdapMapped
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
operationType
(OperationType
)
The corresponding operation type for the action.
Warning
operationType
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organization
(Organization
)
The Organization associated with the Audit Entry.
Warning
organization
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationName
(String
)
The name of the Organization.
Warning
organizationName
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationResourcePath
(URI
)
The HTTP path for the organization.
Warning
organizationResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
organizationUrl
(URI
)
The HTTP URL for the organization.
Warning
organizationUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
repository
(Repository
)
The repository associated with the action.
repositoryName
(String
)
The name of the repository.
repositoryResourcePath
(URI
)
The HTTP path for the repository.
repositoryUrl
(URI
)
The HTTP URL for the repository.
team
(Team
)
The team associated with the action.
teamName
(String
)
The name of the team.
teamResourcePath
(URI
)
The HTTP path for this team.
teamUrl
(URI
)
The HTTP URL for this team.
user
(User
)
The user affected by the action.
Warning
user
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userLogin
(String
)
For actions involving two users, the actor is the initiator and the user is the affected user.
Warning
userLogin
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userResourcePath
(URI
)
The HTTP path for the user.
Warning
userResourcePath
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
userUrl
(URI
)
The HTTP URL for the user.
Warning
userUrl
is deprecated.
The GraphQL audit-log is deprecated. Please use the REST API instead. Removal on 2026-04-01 UTC.
TextMatchA text match within a search result.
Fields forTextMatch
Name Description
fragment
(String!
)
The specific text fragment within the property matched on.
highlights
([TextMatchHighlight!]!
)
Highlights within the matched fragment.
property
(String!
)
The property matched on.
TextMatchHighlightRepresents a single highlight in a search result match.
Fields forTextMatchHighlight
Name Description
beginIndice
(Int!
)
The indice in the fragment where the matched text begins.
endIndice
(Int!
)
The indice in the fragment where the matched text ends.
text
(String!
)
The text matched.
TopicA topic aggregates entities that are related to a subject.
Topic
Implements
Fields for Topic
Name Description
id
(ID!
)
The Node ID of the Topic object.
name
(String!
)
The topic's name.
relatedTopics
([Topic!]!
)
A list of related topics, including aliases of this topic, sorted with the most relevant first. Returns up to 10 Topics.
Arguments for relatedTopics
first
(Int
)
How many topics to return.
The default value is 3
.
repositories
(RepositoryConnection!
)
A list of repositories.
Arguments for repositories
affiliations
([RepositoryAffiliation]
)
Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
hasIssuesEnabled
(Boolean
)
If non-null, filters repositories according to whether they have issues enabled.
isLocked
(Boolean
)
If non-null, filters repositories according to whether they have been locked.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryOrder
)
Ordering options for repositories returned from the connection.
ownerAffiliations
([RepositoryAffiliation]
)
Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
privacy
(RepositoryPrivacy
)
If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.
sponsorableOnly
(Boolean
)
If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.
The default value is false
.
visibility
(RepositoryVisibility
)
If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.
stargazerCount
(Int!
)
Returns a count of how many stargazers there are on this object.
stargazers
(StargazerConnection!
)
A list of users who have starred this starrable.
Arguments for stargazers
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(StarOrder
)
Order for connection.
viewerHasStarred
(Boolean!
)
Returns a boolean indicating whether the viewing user has starred this starrable.
TransferredEventRepresents atransferred
event on a given issue or pull request.
TransferredEvent
Implements
Fields for TransferredEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
fromRepository
(Repository
)
The repository this came from.
id
(ID!
)
The Node ID of the TransferredEvent object.
issue
(Issue!
)
Identifies the issue associated with the event.
TreeRepresents a Git tree.
Tree
Implements
Fields for Tree
Name Description
abbreviatedOid
(String!
)
An abbreviated version of the Git object ID.
commitResourcePath
(URI!
)
The HTTP path for this Git object.
commitUrl
(URI!
)
The HTTP URL for this Git object.
entries
([TreeEntry!]
)
A list of tree entries.
id
(ID!
)
The Node ID of the Tree object.
oid
(GitObjectID!
)
The Git object ID.
repository
(Repository!
)
The Repository the Git object belongs to.
TreeEntryRepresents a Git tree entry.
Fields forTreeEntry
Name Description
extension
(String
)
The extension of the file.
isGenerated
(Boolean!
)
Whether or not this tree entry is generated.
language
(Language
)
The programming language this file is written in.
lineCount
(Int
)
Number of lines in the file.
mode
(Int!
)
Entry file mode.
name
(String!
)
Entry file name.
nameRaw
(Base64String!
)
Entry file name. (Base64-encoded).
object
(GitObject
)
Entry file object.
oid
(GitObjectID!
)
Entry file Git object ID.
path
(String
)
The full path of the file.
pathRaw
(Base64String
)
The full path of the file. (Base64-encoded).
repository
(Repository!
)
The Repository the tree entry belongs to.
size
(Int!
)
Entry byte size.
submodule
(Submodule
)
If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.
type
(String!
)
Entry file type.
UnassignedEventRepresents anunassigned
event on any assignable object.
UnassignedEvent
Implements
Fields for UnassignedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
assignable
(Assignable!
)
Identifies the assignable associated with the event.
assignee
(Assignee
)
Identifies the user or mannequin that was unassigned.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the UnassignedEvent object.
user
(User
)
Identifies the subject (user) who was unassigned.
Warning
user
is deprecated.
Assignees can now be mannequins. Use the assignee
field instead. Removal on 2020-01-01 UTC.
Represents an unknown signature on a Commit or Tag.
UnknownSignature
Implements
Fields for UnknownSignature
Name Description
email
(String!
)
Email used to sign this object.
isValid
(Boolean!
)
True if the signature is valid and verified by GitHub.
payload
(String!
)
Payload for GPG signing object. Raw ODB object without the signature header.
signature
(String!
)
ASCII-armored signature header from object.
signer
(User
)
GitHub user corresponding to the email signing this commit.
state
(GitSignatureState!
)
The state of this signature. VALID
if signature is valid and verified by GitHub, otherwise represents reason why signature is considered invalid.
verifiedAt
(DateTime
)
The date the signature was verified, if valid.
wasSignedByGitHub
(Boolean!
)
True if the signature was made with GitHub's signing key.
UnlabeledEventRepresents anunlabeled
event on a given issue or pull request.
UnlabeledEvent
Implements
Fields for UnlabeledEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the UnlabeledEvent object.
label
(Label!
)
Identifies the label associated with theunlabeled
event.
labelable
(Labelable!
)
Identifies the Labelable
associated with the event.
Represents anunlocked
event on a given issue or pull request.
UnlockedEvent
Implements
Fields for UnlockedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the UnlockedEvent object.
lockable
(Lockable!
)
Object that was unlocked.
UnmarkedAsDuplicateEventRepresents anunmarked_as_duplicate
event on a given issue or pull request.
UnmarkedAsDuplicateEvent
Implements
Fields for UnmarkedAsDuplicateEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
canonical
(IssueOrPullRequest
)
The authoritative issue or pull request which has been duplicated by another.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
duplicate
(IssueOrPullRequest
)
The issue or pull request which has been marked as a duplicate of another.
id
(ID!
)
The Node ID of the UnmarkedAsDuplicateEvent object.
isCrossRepository
(Boolean!
)
Canonical and duplicate belong to different repositories.
UnpinnedEventRepresents anunpinned
event on a given issue or pull request.
UnpinnedEvent
Implements
Fields for UnpinnedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the UnpinnedEvent object.
issue
(Issue!
)
Identifies the issue associated with the event.
UnsubscribedEventRepresents anunsubscribed
event on a given Subscribable
.
UnsubscribedEvent
Implements
Fields for UnsubscribedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the UnsubscribedEvent object.
subscribable
(Subscribable!
)
Object referenced by event.
UpdateParametersOnly allow users with bypass permission to update matching refs.
Fields forUpdateParameters
Name Description
updateAllowsFetchAndMerge
(Boolean!
)
Branch can pull changes from its upstream repository.
UserA user is an individual's account on GitHub that owns repositories and can make new content.
User
Implements
Actor
Node
PackageOwner
ProfileOwner
ProjectOwner
ProjectV2Owner
ProjectV2Recent
RepositoryDiscussionAuthor
RepositoryDiscussionCommentAuthor
RepositoryOwner
Sponsorable
UniformResourceLocatable
User
Name Description
anyPinnableItems
(Boolean!
)
Determine if this repository owner has any items that can be pinned to their profile.
Arguments for anyPinnableItems
type
(PinnableItemType
)
Filter to only a particular kind of pinnable item.
avatarUrl
(URI!
)
A URL pointing to the user's public avatar.
Arguments for avatarUrl
size
(Int
)
The size of the resulting square image.
bio
(String
)
The user's public profile bio.
bioHTML
(HTML!
)
The user's public profile bio as HTML.
canReceiveOrganizationEmailsWhenNotificationsRestricted
(Boolean!
)
Could this user receive email notifications, if the organization had notification restrictions enabled?.
Arguments for canReceiveOrganizationEmailsWhenNotificationsRestricted
login
(String!
)
The login of the organization to check.
commitComments
(CommitCommentConnection!
)
A list of commit comments made by this user.
Arguments for commitComments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
company
(String
)
The user's public profile company.
companyHTML
(HTML!
)
The user's public profile company as HTML.
contributionsCollection
(ContributionsCollection!
)
The collection of contributions this user has made to different repositories.
Arguments for contributionsCollection
from
(DateTime
)
Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.
organizationID
(ID
)
The ID of the organization used to filter contributions.
to
(DateTime
)
Only contributions made before and up to (including) this time will be counted. If omitted, defaults to the current time or one year from the provided from argument.
copilotEndpoints
(CopilotEndpoints
)
The user's Copilot endpoint information.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
email
(String!
)
The user's publicly visible profile email.
enterprises
(EnterpriseConnection
)
A list of enterprises that the user belongs to.
Arguments for enterprises
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
membershipType
(EnterpriseMembershipType
)
Filter enterprises returned based on the user's membership type.
The default value is ALL
.
orderBy
(EnterpriseOrder
)
Ordering options for the User's enterprises.
estimatedNextSponsorsPayoutInCents
(Int!
)
The estimated next GitHub Sponsors payout for this user/organization in cents (USD).
followers
(FollowerConnection!
)
A list of users the given user is followed by.
Arguments for followers
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
following
(FollowingConnection!
)
A list of users the given user is following.
Arguments for following
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
gist
(Gist
)
Find gist by repo name.
Arguments for gist
name
(String!
)
The gist name to find.
gistComments
(GistCommentConnection!
)
A list of gist comments made by this user.
Arguments for gistComments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
gists
(GistConnection!
)
A list of the Gists the user has created.
Arguments for gists
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(GistOrder
)
Ordering options for gists returned from the connection.
privacy
(GistPrivacy
)
Filters Gists according to privacy.
hasSponsorsListing
(Boolean!
)
True if this user/organization has a GitHub Sponsors listing.
hovercard
(Hovercard!
)
The hovercard information for this user in a given context.
Arguments for hovercard
primarySubjectId
(ID
)
The ID of the subject to get the hovercard in the context of.
id
(ID!
)
The Node ID of the User object.
interactionAbility
(RepositoryInteractionAbility
)
The interaction ability settings for this user.
isBountyHunter
(Boolean!
)
Whether or not this user is a participant in the GitHub Security Bug Bounty.
isCampusExpert
(Boolean!
)
Whether or not this user is a participant in the GitHub Campus Experts Program.
isDeveloperProgramMember
(Boolean!
)
Whether or not this user is a GitHub Developer Program member.
isEmployee
(Boolean!
)
Whether or not this user is a GitHub employee.
isFollowingViewer
(Boolean!
)
Whether or not this user is following the viewer. Inverse of viewerIsFollowing.
isGitHubStar
(Boolean!
)
Whether or not this user is a member of the GitHub Stars Program.
isHireable
(Boolean!
)
Whether or not the user has marked themselves as for hire.
isSiteAdmin
(Boolean!
)
Whether or not this user is a site administrator.
isSponsoredBy
(Boolean!
)
Whether the given account is sponsoring this user/organization.
Arguments for isSponsoredBy
accountLogin
(String!
)
The target account's login.
isSponsoringViewer
(Boolean!
)
True if the viewer is sponsored by this user/organization.
isViewer
(Boolean!
)
Whether or not this user is the viewing user.
issueComments
(IssueCommentConnection!
)
A list of issue comments made by this user.
Arguments for issueComments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueCommentOrder
)
Ordering options for issue comments returned from the connection.
issues
(IssueConnection!
)
A list of issues associated with this user.
Arguments for issues
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
filterBy
(IssueFilters
)
Filtering options for issues returned from the connection.
first
(Int
)
Returns the first n elements from the list.
labels
([String!]
)
A list of label names to filter the pull requests by.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueOrder
)
Ordering options for issues returned from the connection.
states
([IssueState!]
)
A list of states to filter the issues by.
itemShowcase
(ProfileItemShowcase!
)
Showcases a selection of repositories and gists that the profile owner has either curated or that have been selected automatically based on popularity.
lifetimeReceivedSponsorshipValues
(SponsorAndLifetimeValueConnection!
)
Calculate how much each sponsor has ever paid total to this maintainer via GitHub Sponsors. Does not include sponsorships paid via Patreon.
Arguments for lifetimeReceivedSponsorshipValues
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorAndLifetimeValueOrder
)
Ordering options for results returned from the connection.
lists
(UserListConnection!
)
A user-curated list of repositories.
Arguments for lists
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
location
(String
)
The user's public profile location.
login
(String!
)
The username used to login.
monthlyEstimatedSponsorsIncomeInCents
(Int!
)
The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).
name
(String
)
The user's public profile name.
organization
(Organization
)
Find an organization by its login that the user belongs to.
Arguments for organization
login
(String!
)
The login of the organization to find.
organizationVerifiedDomainEmails
([String!]!
)
Verified email addresses that match verified domains for a specified organization the user is a member of.
Arguments for organizationVerifiedDomainEmails
login
(String!
)
The login of the organization to match verified domains from.
organizations
(OrganizationConnection!
)
A list of organizations the user belongs to.
Arguments for organizations
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(OrganizationOrder
)
Ordering options for the User's organizations.
packages
(PackageConnection!
)
A list of packages under the owner.
Arguments for packages
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
names
([String]
)
Find packages by their names.
orderBy
(PackageOrder
)
Ordering of the returned packages.
packageType
(PackageType
)
Filter registry package by type.
repositoryId
(ID
)
Find packages in a repository by ID.
pinnableItems
(PinnableItemConnection!
)
A list of repositories and gists this profile owner can pin to their profile.
Arguments for pinnableItems
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
types
([PinnableItemType!]
)
Filter the types of pinnable items that are returned.
pinnedItems
(PinnableItemConnection!
)
A list of repositories and gists this profile owner has pinned to their profile.
Arguments for pinnedItems
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
types
([PinnableItemType!]
)
Filter the types of pinned items that are returned.
pinnedItemsRemaining
(Int!
)
Returns how many more items this profile owner can pin to their profile.
project
(Project
)
Find project by number.
Warning
project
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
Arguments for project
number
(Int!
)
The project number to find.
projectV2
(ProjectV2
)
Find a project by number.
Arguments for projectV2
number
(Int!
)
The project number.
projects
(ProjectConnection!
)
A list of projects under the owner.
Warning
projects
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
Arguments for projects
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(ProjectOrder
)
Ordering options for projects returned from the connection.
search
(String
)
Query to search projects by, currently only searching by name.
states
([ProjectState!]
)
A list of states to filter the projects by.
projectsResourcePath
(URI!
)
The HTTP path listing user's projects.
projectsUrl
(URI!
)
The HTTP URL listing user's projects.
projectsV2
(ProjectV2Connection!
)
A list of projects under the owner.
Arguments for projectsV2
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
minPermissionLevel
(ProjectV2PermissionLevel
)
Filter projects based on user role.
The default value is READ
.
orderBy
(ProjectV2Order
)
How to order the returned projects.
query
(String
)
A project to search for under the owner.
pronouns
(String
)
The user's profile pronouns.
publicKeys
(PublicKeyConnection!
)
A list of public keys associated with this user.
Arguments for publicKeys
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
pullRequests
(PullRequestConnection!
)
A list of pull requests associated with this user.
Arguments for pullRequests
after
(String
)
Returns the elements in the list that come after the specified cursor.
baseRefName
(String
)
The base ref name to filter the pull requests by.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
headRefName
(String
)
The head ref name to filter the pull requests by.
labels
([String!]
)
A list of label names to filter the pull requests by.
last
(Int
)
Returns the last n elements from the list.
orderBy
(IssueOrder
)
Ordering options for pull requests returned from the connection.
states
([PullRequestState!]
)
A list of states to filter the pull requests by.
recentProjects
(ProjectV2Connection!
)
Recent projects that this user has modified in the context of the owner.
Arguments for recentProjects
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
repositories
(RepositoryConnection!
)
A list of repositories that the user owns.
Arguments for repositories
affiliations
([RepositoryAffiliation]
)
Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
hasIssuesEnabled
(Boolean
)
If non-null, filters repositories according to whether they have issues enabled.
isArchived
(Boolean
)
If non-null, filters repositories according to whether they are archived and not maintained.
isFork
(Boolean
)
If non-null, filters repositories according to whether they are forks of another repository.
isLocked
(Boolean
)
If non-null, filters repositories according to whether they have been locked.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryOrder
)
Ordering options for repositories returned from the connection.
ownerAffiliations
([RepositoryAffiliation]
)
Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
privacy
(RepositoryPrivacy
)
If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.
visibility
(RepositoryVisibility
)
If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.
repositoriesContributedTo
(RepositoryConnection!
)
A list of repositories that the user recently contributed to.
Arguments for repositoriesContributedTo
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
contributionTypes
([RepositoryContributionType]
)
If non-null, include only the specified types of contributions. The GitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].
first
(Int
)
Returns the first n elements from the list.
hasIssues
(Boolean
)
If non-null, filters repositories according to whether they have issues enabled.
includeUserRepositories
(Boolean
)
If true, include user repositories.
isLocked
(Boolean
)
If non-null, filters repositories according to whether they have been locked.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryOrder
)
Ordering options for repositories returned from the connection.
privacy
(RepositoryPrivacy
)
If non-null, filters repositories according to privacy.
repository
(Repository
)
Find Repository.
Arguments for repository
followRenames
(Boolean
)
Follow repository renames. If disabled, a repository referenced by its old name will return an error.
The default value is true
.
name
(String!
)
Name of Repository to find.
repositoryDiscussionComments
(DiscussionCommentConnection!
)
Discussion comments this user has authored.
Arguments for repositoryDiscussionComments
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
onlyAnswers
(Boolean
)
Filter discussion comments to only those that were marked as the answer.
The default value is false
.
repositoryId
(ID
)
Filter discussion comments to only those in a specific repository.
repositoryDiscussions
(DiscussionConnection!
)
Discussions this user has started.
Arguments for repositoryDiscussions
after
(String
)
Returns the elements in the list that come after the specified cursor.
answered
(Boolean
)
Filter discussions to only those that have been answered or not. Defaults to including both answered and unanswered discussions.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(DiscussionOrder
)
Ordering options for discussions returned from the connection.
repositoryId
(ID
)
Filter discussions to only those in a specific repository.
states
([DiscussionState!]
)
A list of states to filter the discussions by.
resourcePath
(URI!
)
The HTTP path for this user.
savedReplies
(SavedReplyConnection
)
Replies this user has saved.
Arguments for savedReplies
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SavedReplyOrder
)
The field to order saved replies by.
socialAccounts
(SocialAccountConnection!
)
The user's social media accounts, ordered as they appear on the user's profile.
Arguments for socialAccounts
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
sponsoring
(SponsorConnection!
)
List of users and organizations this entity is sponsoring.
Arguments for sponsoring
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorOrder
)
Ordering options for the users and organizations returned from the connection.
sponsors
(SponsorConnection!
)
List of sponsors for this user or organization.
Arguments for sponsors
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorOrder
)
Ordering options for sponsors returned from the connection.
tierId
(ID
)
If given, will filter for sponsors at the given tier. Will only return sponsors whose tier the viewer is permitted to see.
sponsorsActivities
(SponsorsActivityConnection!
)
Events involving this sponsorable, such as new sponsorships.
Arguments for sponsorsActivities
actions
([SponsorsActivityAction!]
)
Filter activities to only the specified actions.
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
includeAsSponsor
(Boolean
)
Whether to include those events where this sponsorable acted as the sponsor. Defaults to only including events where this sponsorable was the recipient of a sponsorship.
The default value is false
.
includePrivate
(Boolean
)
Whether or not to include private activities in the result set. Defaults to including public and private activities.
The default value is true
.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorsActivityOrder
)
Ordering options for activity returned from the connection.
period
(SponsorsActivityPeriod
)
Filter activities returned to only those that occurred in the most recent specified time period. Set to ALL to avoid filtering by when the activity occurred. Will be ignored if since
or until
is given.
The default value is MONTH
.
since
(DateTime
)
Filter activities to those that occurred on or after this time.
until
(DateTime
)
Filter activities to those that occurred before this time.
sponsorsListing
(SponsorsListing
)
The GitHub Sponsors listing for this user or organization.
sponsorshipForViewerAsSponsor
(Sponsorship
)
The sponsorship from the viewer to this user/organization; that is, the sponsorship where you're the sponsor.
Arguments for sponsorshipForViewerAsSponsor
activeOnly
(Boolean
)
Whether to return the sponsorship only if it's still active. Pass false to get the viewer's sponsorship back even if it has been cancelled.
The default value is true
.
sponsorshipForViewerAsSponsorable
(Sponsorship
)
The sponsorship from this user/organization to the viewer; that is, the sponsorship you're receiving.
Arguments for sponsorshipForViewerAsSponsorable
activeOnly
(Boolean
)
Whether to return the sponsorship only if it's still active. Pass false to get the sponsorship back even if it has been cancelled.
The default value is true
.
sponsorshipNewsletters
(SponsorshipNewsletterConnection!
)
List of sponsorship updates sent from this sponsorable to sponsors.
Arguments for sponsorshipNewsletters
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorshipNewsletterOrder
)
Ordering options for sponsorship updates returned from the connection.
sponsorshipsAsMaintainer
(SponsorshipConnection!
)
The sponsorships where this user or organization is the maintainer receiving the funds.
Arguments for sponsorshipsAsMaintainer
activeOnly
(Boolean
)
Whether to include only sponsorships that are active right now, versus all sponsorships this maintainer has ever received.
The default value is true
.
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
includePrivate
(Boolean
)
Whether or not to include private sponsorships in the result set.
The default value is false
.
last
(Int
)
Returns the last n elements from the list.
orderBy
(SponsorshipOrder
)
Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.
sponsorshipsAsSponsor
(SponsorshipConnection!
)
The sponsorships where this user or organization is the funder.
Arguments for sponsorshipsAsSponsor
activeOnly
(Boolean
)
Whether to include only sponsorships that are active right now, versus all sponsorships this sponsor has ever made.
The default value is true
.
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
maintainerLogins
([String!]
)
Filter sponsorships returned to those for the specified maintainers. That is, the recipient of the sponsorship is a user or organization with one of the given logins.
orderBy
(SponsorshipOrder
)
Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.
starredRepositories
(StarredRepositoryConnection!
)
Repositories the user has starred.
Arguments for starredRepositories
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(StarOrder
)
Order for connection.
ownedByViewer
(Boolean
)
Filters starred repositories to only return repositories owned by the viewer.
status
(UserStatus
)
The user's description of what they're currently doing.
suggestedListNames
([UserListSuggestion!]!
)
Suggested names for user lists.
topRepositories
(RepositoryConnection!
)
Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.
Arguments for topRepositories
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryOrder!
)
Ordering options for repositories returned from the connection.
since
(DateTime
)
How far back in time to fetch contributed repositories.
totalSponsorshipAmountAsSponsorInCents
(Int
)
The amount in United States cents (e.g., 500 = $5.00 USD) that this entity has spent on GitHub to fund sponsorships. Only returns a value when viewed by the user themselves or by a user who can manage sponsorships for the requested organization.
Arguments for totalSponsorshipAmountAsSponsorInCents
since
(DateTime
)
Filter payments to those that occurred on or after this time.
sponsorableLogins
([String!]
)
Filter payments to those made to the users or organizations with the specified usernames.
until
(DateTime
)
Filter payments to those that occurred before this time.
twitterUsername
(String
)
The user's Twitter username.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this user.
userViewType
(UserViewType!
)
Whether the request returns publicly visible information or privately visible information about the user.
viewerCanChangePinnedItems
(Boolean!
)
Can the viewer pin repositories and gists to the profile?.
viewerCanCreateProjects
(Boolean!
)
Can the current viewer create new projects on this owner.
Warning
viewerCanCreateProjects
is deprecated.
Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
viewerCanFollow
(Boolean!
)
Whether or not the viewer is able to follow the user.
viewerCanSponsor
(Boolean!
)
Whether or not the viewer is able to sponsor this user/organization.
viewerIsFollowing
(Boolean!
)
Whether or not this user is followed by the viewer. Inverse of isFollowingViewer.
viewerIsSponsoring
(Boolean!
)
True if the viewer is sponsoring this user/organization.
watching
(RepositoryConnection!
)
A list of repositories the given user is watching.
Arguments for watching
affiliations
([RepositoryAffiliation]
)
Affiliation options for repositories returned from the connection. If none specified, the results will include repositories for which the current viewer is an owner or collaborator, or member.
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
hasIssuesEnabled
(Boolean
)
If non-null, filters repositories according to whether they have issues enabled.
isLocked
(Boolean
)
If non-null, filters repositories according to whether they have been locked.
last
(Int
)
Returns the last n elements from the list.
orderBy
(RepositoryOrder
)
Ordering options for repositories returned from the connection.
ownerAffiliations
([RepositoryAffiliation]
)
Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
privacy
(RepositoryPrivacy
)
If non-null, filters repositories according to privacy. Internal repositories are considered private; consider using the visibility argument if only internal repositories are needed. Cannot be combined with the visibility argument.
visibility
(RepositoryVisibility
)
If non-null, filters repositories according to visibility. Cannot be combined with the privacy argument.
websiteUrl
(URI
)
A URL pointing to the user's public website/blog.
UserBlockedEventRepresents auser_blocked
event on a given user.
UserBlockedEvent
Implements
Fields for UserBlockedEvent
Name Description
actor
(Actor
)
Identifies the actor who performed the event.
blockDuration
(UserBlockDuration!
)
Number of days that the user was blocked for.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
id
(ID!
)
The Node ID of the UserBlockedEvent object.
subject
(User
)
The user who was blocked.
UserConnectionA list of users.
Fields forUserConnection
Name Description
edges
([UserEdge]
)
A list of edges.
nodes
([User]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
UserContentEditAn edit on user content.
UserContentEdit
Implements
Fields for UserContentEdit
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
deletedAt
(DateTime
)
Identifies the date and time when the object was deleted.
deletedBy
(Actor
)
The actor who deleted this content.
diff
(String
)
A summary of the changes for this edit.
editedAt
(DateTime!
)
When this content was edited.
editor
(Actor
)
The actor who edited this content.
id
(ID!
)
The Node ID of the UserContentEdit object.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
UserEdgeRepresents a user.
Fields forUserEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(User
)
The item at the end of the edge.
Email attributes from External Identity.
Fields forUserEmailMetadata
Name Description
primary
(Boolean
)
Boolean to identify primary emails.
type
(String
)
Type of email.
value
(String!
)
Email id.
UserListA user-curated list of repositories.
UserList
Implements
Fields for UserList
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
description
(String
)
The description of this list.
id
(ID!
)
The Node ID of the UserList object.
isPrivate
(Boolean!
)
Whether or not this list is private.
items
(UserListItemsConnection!
)
The items associated with this list.
Arguments for items
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
lastAddedAt
(DateTime!
)
The date and time at which this list was created or last had items added to it.
name
(String!
)
The name of this list.
slug
(String!
)
The slug of this list.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
user
(User!
)
The user to which this list belongs.
UserListConnectionThe connection type for UserList.
Fields forUserListConnection
Name Description
edges
([UserListEdge]
)
A list of edges.
nodes
([UserList]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
UserListEdgeAn edge in a connection.
Fields forUserListEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(UserList
)
The item at the end of the edge.
UserListItemsEdgeAn edge in a connection.
Fields forUserListItemsEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(UserListItems
)
The item at the end of the edge.
UserListSuggestionRepresents a suggested user list.
Fields forUserListSuggestion
Name Description
id
(ID
)
The ID of the suggested user list.
name
(String
)
The name of the suggested user list.
UserNamespaceRepositoryA repository owned by an Enterprise Managed user.
UserNamespaceRepository
Implements
Fields for UserNamespaceRepository
Name Description
id
(ID!
)
The Node ID of the UserNamespaceRepository object.
name
(String!
)
The name of the repository.
nameWithOwner
(String!
)
The repository's name with owner.
owner
(RepositoryOwner!
)
The user owner of the repository.
UserStatusThe user's description of what they're currently doing.
UserStatus
Implements
Fields for UserStatus
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
emoji
(String
)
An emoji summarizing the user's status.
emojiHTML
(HTML
)
The status emoji as HTML.
expiresAt
(DateTime
)
If set, the status will not be shown after this date.
id
(ID!
)
The Node ID of the UserStatus object.
indicatesLimitedAvailability
(Boolean!
)
Whether this status indicates the user is not fully available on GitHub.
message
(String
)
A brief message describing what the user is doing.
organization
(Organization
)
The organization whose members can see this status. If null, this status is publicly visible.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
user
(User!
)
The user who has this status.
UserStatusConnectionThe connection type for UserStatus.
Fields forUserStatusConnection
Name Description
edges
([UserStatusEdge]
)
A list of edges.
nodes
([UserStatus]
)
A list of nodes.
pageInfo
(PageInfo!
)
Information to aid in pagination.
totalCount
(Int!
)
Identifies the total count of items in the connection.
UserStatusEdgeAn edge in a connection.
Fields forUserStatusEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(UserStatus
)
The item at the end of the edge.
VerifiableDomainA domain that can be verified or approved for an organization or an enterprise.
VerifiableDomain
Implements
Fields for VerifiableDomain
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
dnsHostName
(URI
)
The DNS host name that should be used for verification.
domain
(URI!
)
The unicode encoded domain.
hasFoundHostName
(Boolean!
)
Whether a TXT record for verification with the expected host name was found.
hasFoundVerificationToken
(Boolean!
)
Whether a TXT record for verification with the expected verification token was found.
id
(ID!
)
The Node ID of the VerifiableDomain object.
isApproved
(Boolean!
)
Whether or not the domain is approved.
isRequiredForPolicyEnforcement
(Boolean!
)
Whether this domain is required to exist for an organization or enterprise policy to be enforced.
isVerified
(Boolean!
)
Whether or not the domain is verified.
owner
(VerifiableDomainOwner!
)
The owner of the domain.
punycodeEncodedDomain
(URI!
)
The punycode encoded domain.
tokenExpirationTime
(DateTime
)
The time that the current verification token will expire.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
verificationToken
(String
)
The current verification token for the domain.
ViewerHovercardContextA hovercard context with a message describing how the viewer is related.
ViewerHovercardContext
Implements
Fields for ViewerHovercardContext
Name Description
message
(String!
)
A string describing this context.
octicon
(String!
)
An octicon to accompany this context.
viewer
(User!
)
Identifies the user who is related to this context.
WorkflowA workflow contains meta information about an Actions workflow file.
Workflow
Implements
Fields for Workflow
Name Description
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
id
(ID!
)
The Node ID of the Workflow object.
name
(String!
)
The name of the workflow.
resourcePath
(URI!
)
The HTTP path for this workflow.
runs
(WorkflowRunConnection!
)
The runs of the workflow.
Arguments for runs
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
orderBy
(WorkflowRunOrder
)
Ordering options for the connection.
state
(WorkflowState!
)
The state of the workflow.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this workflow.
WorkflowFileReferenceA workflow that must run for this rule to pass.
Fields forWorkflowFileReference
Name Description
path
(String!
)
The path to the workflow file.
ref
(String
)
The ref (branch or tag) of the workflow file to use.
repositoryId
(Int!
)
The ID of the repository where the workflow is defined.
sha
(String
)
The commit SHA of the workflow file to use.
WorkflowRunA workflow run.
WorkflowRun
Implements
Fields for WorkflowRun
Name Description
checkSuite
(CheckSuite!
)
The check suite this workflow run belongs to.
createdAt
(DateTime!
)
Identifies the date and time when the object was created.
databaseId
(Int
)
Identifies the primary key from the database.
deploymentReviews
(DeploymentReviewConnection!
)
The log of deployment reviews.
Arguments for deploymentReviews
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
event
(String!
)
The event that triggered the workflow run.
file
(WorkflowRunFile
)
The workflow file.
id
(ID!
)
The Node ID of the WorkflowRun object.
pendingDeploymentRequests
(DeploymentRequestConnection!
)
The pending deployment requests of all check runs in this workflow run.
Arguments for pendingDeploymentRequests
after
(String
)
Returns the elements in the list that come after the specified cursor.
before
(String
)
Returns the elements in the list that come before the specified cursor.
first
(Int
)
Returns the first n elements from the list.
last
(Int
)
Returns the last n elements from the list.
resourcePath
(URI!
)
The HTTP path for this workflow run.
runNumber
(Int!
)
A number that uniquely identifies this workflow run in its parent workflow.
updatedAt
(DateTime!
)
Identifies the date and time when the object was last updated.
url
(URI!
)
The HTTP URL for this workflow run.
workflow
(Workflow!
)
The workflow executed in this workflow run.
WorkflowRunEdgeAn edge in a connection.
Fields forWorkflowRunEdge
Name Description
cursor
(String!
)
A cursor for use in pagination.
node
(WorkflowRun
)
The item at the end of the edge.
WorkflowRunFileAn executed workflow file for a workflow run.
WorkflowRunFile
Implements
Fields for WorkflowRunFile
Name Description
id
(ID!
)
The Node ID of the WorkflowRunFile object.
path
(String!
)
The path of the workflow file relative to its repository.
repositoryFileUrl
(URI!
)
The direct link to the file in the repository which stores the workflow file.
repositoryName
(URI!
)
The repository name and owner which stores the workflow file.
resourcePath
(URI!
)
The HTTP path for this workflow run file.
run
(WorkflowRun!
)
The parent workflow run execution for this file.
url
(URI!
)
The HTTP URL for this workflow run file.
viewerCanPushRepository
(Boolean!
)
If the viewer has permissions to push to the repository which stores the workflow.
viewerCanReadRepository
(Boolean!
)
If the viewer has permissions to read the repository which stores the workflow.
WorkflowsParametersRequire all changes made to a targeted branch to pass the specified workflows before they can be merged.
Fields forWorkflowsParameters
Name Description
doNotEnforceOnCreate
(Boolean!
)
Allow repositories and branches to be created if a check would otherwise prohibit it.
workflows
([WorkflowFileReference!]!
)
Workflows that must pass for this rule to pass.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4