Skip to content

Commit

Permalink
feat: UnpinIssuePayload#id (#886)
Browse files Browse the repository at this point in the history
* WIP: schema.graphql changed - please review

* build: schema.json and schema.d.ts updated

---------

Co-authored-by: Octokit Bot <octokitbot@martynus.net>
  • Loading branch information
octokitbot and Octokit Bot committed Jan 24, 2024
1 parent f43f9dd commit 1e70a92
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27109,6 +27109,8 @@ export type UnpinIssuePayload = {
__typename?: 'UnpinIssuePayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
/** The id of the pinned issue that was unpinned */
id?: Maybe<Scalars['ID']['output']>;
/** The issue that was unpinned */
issue?: Maybe<Issue>;
};
Expand Down
5 changes: 5 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -54766,6 +54766,11 @@ type UnpinIssuePayload {
"""
clientMutationId: String

"""
The id of the pinned issue that was unpinned
"""
id: ID

"""
The issue that was unpinned
"""
Expand Down
12 changes: 12 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -140654,6 +140654,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "id",
"description": "The id of the pinned issue that was unpinned",
"args": [],
"type": {
"kind": "SCALAR",
"name": "ID",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "issue",
"description": "The issue that was unpinned",
Expand Down

0 comments on commit 1e70a92

Please sign in to comment.