Skip to content

Commit

Permalink
feat: CreateLinkedBranchPayload#issue (#837)
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 <[email protected]>
  • Loading branch information
octokitbot and Octokit Bot authored Sep 27, 2023
1 parent 6d62656 commit 5633f18
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 @@ -3654,6 +3654,8 @@ export type CreateLinkedBranchPayload = {
__typename?: 'CreateLinkedBranchPayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
/** The issue that was linked to. */
issue?: Maybe<Issue>;
/** The new branch issue reference. */
linkedBranch?: Maybe<LinkedBranch>;
};
Expand Down
5 changes: 5 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -7089,6 +7089,11 @@ type CreateLinkedBranchPayload {
"""
clientMutationId: String

"""
The issue that was linked to.
"""
issue: Issue

"""
The new branch issue reference.
"""
Expand Down
12 changes: 12 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -18702,6 +18702,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "issue",
"description": "The issue that was linked to.",
"args": [],
"type": {
"kind": "OBJECT",
"name": "Issue",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "linkedBranch",
"description": "The new branch issue reference.",
Expand Down

0 comments on commit 5633f18

Please sign in to comment.