onetaskgraph-github-projects 0.2.45

A onetaskgraph source over GitHub Projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
# Authoritative GitHub.com GraphQL read/write contract subset.
# The full schema is intentionally reduced to the types and fields selected by this plugin;
# tests validate every production document against this artifact.
#
# `ProjectV2.shortDescription` and `ProjectV2.readme` are absent on purpose, and so is
# `updateProjectV2`: a board is a container of projects here, never a project, and nothing
# this source does writes the board's own fields. `updateProjectV2Field` is present only
# for the guarded status-options document, whose caller sends all existing option ids and
# verifies every id and item assignment after GitHub replaces the complete option set.
#
# `createProjectV2Field` (with `CreateProjectV2FieldInput`, `ProjectV2CustomFieldType` and
# `CreateProjectV2FieldPayload`) and `clearProjectV2ItemFieldValue` (with
# `ClearProjectV2ItemFieldValueInput` and `ClearProjectV2ItemFieldValuePayload`) were copied from
# GitHub's published GraphQL schema reference (docs.github.com/en/graphql/reference/mutations,
# /input-objects, /enums and /objects), retrieved 2026-09-26, reduced to the members this plugin
# sends and selects. The first is sent only by the guarded field setup, for a `Priority` field a
# board lacks; the second clears one item's `Priority` value, which is what a `none` priority is.
schema {
  query: Query
  mutation: Mutation
}
scalar String
scalar ID
scalar Int
scalar Boolean

type Query {
  repositoryOwner(login: String!): RepositoryOwner
  repository(owner: String!, name: String!, followRenames: Boolean = true): Repository
  node(id: ID!): Node
  search(query: String!, type: SearchType!, first: Int, after: String): SearchResultItemConnection!
}
enum SearchType {
  ISSUE
  REPOSITORY
  USER
  DISCUSSION
}
type SearchResultItemConnection {
  issueCount: Int!
  nodes: [SearchResultItem]
  pageInfo: PageInfo!
}
union SearchResultItem = Issue | PullRequest
type Mutation {
  createIssue(input: CreateIssueInput!): CreateIssuePayload
  addProjectV2ItemById(input: AddProjectV2ItemByIdInput!): AddProjectV2ItemByIdPayload
  updateIssue(input: UpdateIssueInput!): UpdateIssuePayload
  updateProjectV2DraftIssue(
    input: UpdateProjectV2DraftIssueInput!
  ): UpdateProjectV2DraftIssuePayload
  updateProjectV2ItemFieldValue(
    input: UpdateProjectV2ItemFieldValueInput!
  ): UpdateProjectV2ItemFieldValuePayload
  updateProjectV2Field(input: UpdateProjectV2FieldInput!): UpdateProjectV2FieldPayload
  createProjectV2Field(input: CreateProjectV2FieldInput!): CreateProjectV2FieldPayload
  clearProjectV2ItemFieldValue(
    input: ClearProjectV2ItemFieldValueInput!
  ): ClearProjectV2ItemFieldValuePayload
  addSubIssue(input: AddSubIssueInput!): AddSubIssuePayload
  removeSubIssue(input: RemoveSubIssueInput!): RemoveSubIssuePayload
  addBlockedBy(input: AddBlockedByInput!): AddBlockedByPayload
  removeBlockedBy(input: RemoveBlockedByInput!): RemoveBlockedByPayload
  deleteIssue(input: DeleteIssueInput!): DeleteIssuePayload
  addComment(input: AddCommentInput!): AddCommentPayload
  updateIssueComment(input: UpdateIssueCommentInput!): UpdateIssueCommentPayload
  deleteIssueComment(input: DeleteIssueCommentInput!): DeleteIssueCommentPayload
}
input DeleteIssueInput {
  issueId: ID!
}
input AddCommentInput {
  subjectId: ID!
  body: String!
  clientMutationId: String
}
input UpdateIssueCommentInput {
  id: ID!
  body: String!
  clientMutationId: String
}
input DeleteIssueCommentInput {
  id: ID!
  clientMutationId: String
}
type AddCommentPayload {
  clientMutationId: String
  commentEdge: IssueCommentEdge
  subject: Node
}
type UpdateIssueCommentPayload {
  clientMutationId: String
  issueComment: IssueComment
}
type DeleteIssueCommentPayload {
  clientMutationId: String
}
input CreateIssueInput {
  repositoryId: ID!
  title: String!
  body: String
  labelIds: [ID!]
  parentIssueId: ID
}
input AddProjectV2ItemByIdInput {
  projectId: ID!
  contentId: ID!
}
input UpdateIssueInput {
  id: ID!
  title: String
  body: String
  state: IssueState
  stateInput: IssueStateUpdateInput
}
input IssueStateUpdateInput {
  value: IssueState!
  stateReason: IssueClosedStateReason
  duplicateIssueId: ID
}
input UpdateProjectV2DraftIssueInput {
  draftIssueId: ID!
  title: String
  body: String
}
input UpdateProjectV2ItemFieldValueInput {
  projectId: ID!
  itemId: ID!
  fieldId: ID!
  value: ProjectV2FieldValue!
}
input ProjectV2FieldValue {
  text: String
  singleSelectOptionId: String
}
input UpdateProjectV2FieldInput {
  projectId: ID!
  fieldId: ID!
  singleSelectOptions: [ProjectV2SingleSelectFieldOptionInput!]
}
input CreateProjectV2FieldInput {
  projectId: ID!
  dataType: ProjectV2CustomFieldType!
  name: String!
  singleSelectOptions: [ProjectV2SingleSelectFieldOptionInput!]
}
enum ProjectV2CustomFieldType {
  DATE
  ITERATION
  NUMBER
  SINGLE_SELECT
  TEXT
}
input ClearProjectV2ItemFieldValueInput {
  projectId: ID!
  itemId: ID!
  fieldId: ID!
}
input ProjectV2SingleSelectFieldOptionInput {
  id: ID
  name: String!
  color: ProjectV2SingleSelectFieldOptionColor!
  description: String!
}
enum ProjectV2SingleSelectFieldOptionColor {
  GRAY
  BLUE
  GREEN
  YELLOW
  PURPLE
  RED
  ORANGE
  PINK
}
input AddSubIssueInput {
  issueId: ID!
  subIssueId: ID
  replaceParent: Boolean
}
input RemoveSubIssueInput {
  issueId: ID!
  subIssueId: ID!
}
input AddBlockedByInput {
  issueId: ID!
  blockingIssueId: ID!
}
input RemoveBlockedByInput {
  issueId: ID!
  blockingIssueId: ID!
}
type CreateIssuePayload {
  issue: Issue
}
type AddProjectV2ItemByIdPayload {
  item: ProjectV2Item
}
type UpdateIssuePayload {
  issue: Issue
}
type UpdateProjectV2DraftIssuePayload {
  draftIssue: DraftIssue
}
type UpdateProjectV2ItemFieldValuePayload {
  projectV2Item: ProjectV2Item
}
type UpdateProjectV2FieldPayload {
  projectV2Field: ProjectV2FieldConfiguration
}
type CreateProjectV2FieldPayload {
  projectV2Field: ProjectV2FieldConfiguration
}
type ClearProjectV2ItemFieldValuePayload {
  projectV2Item: ProjectV2Item
}
type AddSubIssuePayload {
  issue: Issue
  subIssue: Issue
}
type RemoveSubIssuePayload {
  issue: Issue
  subIssue: Issue
}
type AddBlockedByPayload {
  issue: Issue
  blockingIssue: Issue
}
type RemoveBlockedByPayload {
  issue: Issue
  blockingIssue: Issue
}
type DeleteIssuePayload {
  repository: Repository
}
interface Node {
  id: ID!
}
interface RepositoryOwner {
  id: ID!
}
interface ProjectV2Owner {
  projectV2(number: Int!): ProjectV2
}
type Organization implements Node & RepositoryOwner & ProjectV2Owner {
  id: ID!
  projectV2(number: Int!): ProjectV2
}
type User implements Node & RepositoryOwner & ProjectV2Owner {
  id: ID!
  projectV2(number: Int!): ProjectV2
}

type ProjectV2 implements Node {
  id: ID!
  number: Int!
  title: String!
  createdAt: DateTime!
  updatedAt: DateTime!
  fields(first: Int, after: String): ProjectV2FieldConfigurationConnection!
  items(first: Int, after: String): ProjectV2ItemConnection!
}
type ProjectV2FieldConfigurationConnection {
  nodes: [ProjectV2FieldConfiguration]
  pageInfo: PageInfo!
}
type ProjectV2Item implements Node {
  id: ID!
  project: ProjectV2!
  fieldValues(first: Int, after: String): ProjectV2ItemFieldValueConnection!
  content: ProjectV2ItemContent
}
union ProjectV2ItemContent = DraftIssue | Issue | PullRequest | RedactedProjectV2Item
union ProjectV2ItemFieldValue =
  | ProjectV2ItemFieldLabelValue
  | ProjectV2ItemFieldSingleSelectValue
  | ProjectV2ItemFieldTextValue
union ProjectV2FieldConfiguration = ProjectV2SingleSelectField | ProjectV2Field

type ProjectV2ItemFieldValueConnection {
  nodes: [ProjectV2ItemFieldValue]
  pageInfo: PageInfo!
}
type ProjectV2ItemFieldSingleSelectValue {
  name: String
  optionId: String
  field: ProjectV2FieldConfiguration!
}
type ProjectV2ItemFieldLabelValue {
  labels(first: Int, after: String): LabelConnection!
}
type ProjectV2ItemFieldTextValue {
  text: String
  field: ProjectV2FieldConfiguration!
}
type ProjectV2SingleSelectField {
  id: ID!
  name: String!
  options: [ProjectV2SingleSelectFieldOption!]!
}
type ProjectV2Field {
  id: ID!
  name: String!
}
type ProjectV2SingleSelectFieldOption {
  id: ID!
  name: String!
  color: ProjectV2SingleSelectFieldOptionColor!
  description: String
}

type Issue implements Node {
  id: ID!
  number: Int!
  title: String!
  body: String!
  url: URI!
  createdAt: DateTime!
  updatedAt: DateTime!
  state: IssueState!
  stateReason(enableDuplicate: Boolean = false): IssueStateReason
  repository: Repository!
  parent: Issue
  subIssues(first: Int, after: String): IssueConnection!
  subIssuesSummary: SubIssuesSummary!
  projectItems(first: Int, after: String, includeArchived: Boolean = true): ProjectV2ItemConnection!
  labels(first: Int, after: String): LabelConnection
  blockedBy(first: Int, after: String): IssueConnection!
  blocking(first: Int, after: String): IssueConnection!
  comments(first: Int, after: String, orderBy: IssueCommentOrder): IssueCommentConnection!
}
interface Actor {
  login: String!
}
type IssueComment implements Node {
  id: ID!
  author: Actor
  body: String!
  createdAt: DateTime!
  updatedAt: DateTime!
  url: URI!
  issue: Issue!
}
type IssueCommentConnection {
  nodes: [IssueComment]
  pageInfo: PageInfo!
}
type IssueCommentEdge {
  cursor: String!
  node: IssueComment
}
input IssueCommentOrder {
  direction: OrderDirection!
  field: IssueCommentOrderField!
}
enum IssueCommentOrderField {
  UPDATED_AT
}
enum OrderDirection {
  ASC
  DESC
}
type SubIssuesSummary {
  total: Int!
  completed: Int!
  percentCompleted: Int!
}
type PullRequest implements Node {
  id: ID!
  title: String!
  body: String!
  url: URI!
  createdAt: DateTime!
  updatedAt: DateTime!
  state: PullRequestState!
  repository: Repository!
  labels(first: Int, after: String): LabelConnection
}
type Repository implements Node {
  id: ID!
  nameWithOwner: String!
}
type DraftIssue implements Node {
  id: ID!
  title: String!
  body: String
  createdAt: DateTime!
  updatedAt: DateTime!
  projectV2Items(first: Int, after: String): ProjectV2ItemConnection!
}
type RedactedProjectV2Item implements Node {
  id: ID!
}
type Label implements Node {
  id: ID!
  name: String!
  color: String!
}
type ProjectV2ItemConnection {
  nodes: [ProjectV2Item!]
  pageInfo: PageInfo!
}
type IssueConnection {
  nodes: [Issue]
  pageInfo: PageInfo!
}
type LabelConnection {
  nodes: [Label]
  pageInfo: PageInfo!
}
type PageInfo {
  hasNextPage: Boolean!
  endCursor: String
}
enum IssueState {
  OPEN
  CLOSED
}
enum IssueStateReason {
  COMPLETED
  DUPLICATE
  NOT_PLANNED
  REOPENED
}
enum IssueClosedStateReason {
  COMPLETED
  DUPLICATE
  NOT_PLANNED
}
enum PullRequestState {
  OPEN
  CLOSED
  MERGED
}
scalar DateTime
scalar URI