You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: data/graphql/ghae/schema.docs-ghae.graphql
-16Lines changed: 0 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -9736,14 +9736,6 @@ type EnterpriseBillingInfo {
9736
9736
"""
9737
9737
assetPacks: Int!
9738
9738
9739
-
"""
9740
-
The number of available seats across all owned organizations based on the unique number of billable users.
9741
-
"""
9742
-
availableSeats: Int!
9743
-
@deprecated(
9744
-
reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC."
9745
-
)
9746
-
9747
9739
"""
9748
9740
The bandwidth quota in GB for all organizations owned by the enterprise.
9749
9741
"""
@@ -9759,14 +9751,6 @@ type EnterpriseBillingInfo {
9759
9751
"""
9760
9752
bandwidthUsagePercentage: Int!
9761
9753
9762
-
"""
9763
-
The total seats across all organizations owned by the enterprise.
9764
-
"""
9765
-
seats: Int!
9766
-
@deprecated(
9767
-
reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC."
9768
-
)
9769
-
9770
9754
"""
9771
9755
The storage quota in GB for all organizations owned by the enterprise.
A unique identifier for the client performing the mutation.
516
+
"""
517
+
clientMutationId: String
518
+
519
+
"""
520
+
The draft issue added to the project.
521
+
"""
522
+
projectNextItem: ProjectNextItem
523
+
}
524
+
480
525
"""
481
526
Autogenerated input type of AddProjectNextItem
482
527
"""
@@ -10564,14 +10609,6 @@ type EnterpriseBillingInfo {
10564
10609
"""
10565
10610
assetPacks: Int!
10566
10611
10567
-
"""
10568
-
The number of available seats across all owned organizations based on the unique number of billable users.
10569
-
"""
10570
-
availableSeats: Int!
10571
-
@deprecated(
10572
-
reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC."
10573
-
)
10574
-
10575
10612
"""
10576
10613
The bandwidth quota in GB for all organizations owned by the enterprise.
10577
10614
"""
@@ -10587,14 +10624,6 @@ type EnterpriseBillingInfo {
10587
10624
"""
10588
10625
bandwidthUsagePercentage: Int!
10589
10626
10590
-
"""
10591
-
The total seats across all organizations owned by the enterprise.
10592
-
"""
10593
-
seats: Int!
10594
-
@deprecated(
10595
-
reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC."
10596
-
)
10597
-
10598
10627
"""
10599
10628
The storage quota in GB for all organizations owned by the enterprise.
10600
10629
"""
@@ -18537,6 +18566,16 @@ type Mutation {
18537
18566
input: AddProjectColumnInput!
18538
18567
): AddProjectColumnPayload
18539
18568
18569
+
"""
18570
+
Creates a new draft issue and add it to a Project.
18571
+
"""
18572
+
addProjectDraftIssue(
18573
+
"""
18574
+
Parameters for AddProjectDraftIssue
18575
+
"""
18576
+
input: AddProjectDraftIssueInput!
18577
+
): AddProjectDraftIssuePayload
18578
+
18540
18579
"""
18541
18580
Adds an existing item (Issue or PullRequest) to a Project.
18542
18581
"""
@@ -20118,6 +20157,16 @@ type Mutation {
20118
20157
input: UpdateProjectColumnInput!
20119
20158
): UpdateProjectColumnPayload
20120
20159
20160
+
"""
20161
+
Updates a draft issue within a Project.
20162
+
"""
20163
+
updateProjectDraftIssue(
20164
+
"""
20165
+
Parameters for UpdateProjectDraftIssue
20166
+
"""
20167
+
input: UpdateProjectDraftIssueInput!
20168
+
): UpdateProjectDraftIssuePayload
20169
+
20121
20170
"""
20122
20171
Updates an existing project (beta).
20123
20172
"""
@@ -46494,6 +46543,51 @@ type UpdateProjectColumnPayload {
46494
46543
projectColumn: ProjectColumn
46495
46544
}
46496
46545
46546
+
"""
46547
+
Autogenerated input type of UpdateProjectDraftIssue
0 commit comments