Skip to content

Commit a868665

Browse files
authored
feat: PullRequest#{isInMergeQueue,mergeQueue} (#890)
1 parent 1b3c7a8 commit a868665

3 files changed

Lines changed: 42 additions & 0 deletions

File tree

schema.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17452,6 +17452,8 @@ export type PullRequest = Assignable & Closable & Comment & Labelable & Lockable
1745217452
isCrossRepository: Scalars['Boolean']['output'];
1745317453
/** Identifies if the pull request is a draft. */
1745417454
isDraft: Scalars['Boolean']['output'];
17455+
/** Indicates whether the pull request is in a merge queue */
17456+
isInMergeQueue: Scalars['Boolean']['output'];
1745517457
/** Is this pull request read by the viewer */
1745617458
isReadByViewer?: Maybe<Scalars['Boolean']['output']>;
1745717459
/** A list of labels associated with the object. */
@@ -17468,6 +17470,8 @@ export type PullRequest = Assignable & Closable & Comment & Labelable & Lockable
1746817470
maintainerCanModify: Scalars['Boolean']['output'];
1746917471
/** The commit that was created when this pull request was merged. */
1747017472
mergeCommit?: Maybe<Commit>;
17473+
/** The merge queue for the pull request's base branch */
17474+
mergeQueue?: Maybe<MergeQueue>;
1747117475
/** The merge queue entry of the pull request in the base branch's merge queue */
1747217476
mergeQueueEntry?: Maybe<MergeQueueEntry>;
1747317477
/** Whether or not the pull request can be merged based on the existence of merge conflicts. */

schema.graphql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34394,6 +34394,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
3439434394
"""
3439534395
isDraft: Boolean!
3439634396

34397+
"""
34398+
Indicates whether the pull request is in a merge queue
34399+
"""
34400+
isInMergeQueue: Boolean!
34401+
3439734402
"""
3439834403
Is this pull request read by the viewer
3439934404
"""
@@ -34504,6 +34509,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
3450434509
"""
3450534510
mergeCommit: Commit
3450634511

34512+
"""
34513+
The merge queue for the pull request's base branch
34514+
"""
34515+
mergeQueue: MergeQueue
34516+
3450734517
"""
3450834518
The merge queue entry of the pull request in the base branch's merge queue
3450934519
"""

schema.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89594,6 +89594,22 @@
8959489594
"isDeprecated": false,
8959589595
"deprecationReason": null
8959689596
},
89597+
{
89598+
"name": "isInMergeQueue",
89599+
"description": "Indicates whether the pull request is in a merge queue",
89600+
"args": [],
89601+
"type": {
89602+
"kind": "NON_NULL",
89603+
"name": null,
89604+
"ofType": {
89605+
"kind": "SCALAR",
89606+
"name": "Boolean",
89607+
"ofType": null
89608+
}
89609+
},
89610+
"isDeprecated": false,
89611+
"deprecationReason": null
89612+
},
8959789613
{
8959889614
"name": "isReadByViewer",
8959989615
"description": "Is this pull request read by the viewer",
@@ -89841,6 +89857,18 @@
8984189857
"isDeprecated": false,
8984289858
"deprecationReason": null
8984389859
},
89860+
{
89861+
"name": "mergeQueue",
89862+
"description": "The merge queue for the pull request's base branch",
89863+
"args": [],
89864+
"type": {
89865+
"kind": "OBJECT",
89866+
"name": "MergeQueue",
89867+
"ofType": null
89868+
},
89869+
"isDeprecated": false,
89870+
"deprecationReason": null
89871+
},
8984489872
{
8984589873
"name": "mergeQueueEntry",
8984689874
"description": "The merge queue entry of the pull request in the base branch's merge queue",

0 commit comments

Comments
 (0)