-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinear.graphql
More file actions
16569 lines (16154 loc) · 360 KB
/
Copy pathlinear.graphql
File metadata and controls
16569 lines (16154 loc) · 360 KB
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
schema {
query: Query
mutation: Mutation
}
input AirbyteConfigurationInput {
"""
Linear export API key.
"""
apiKey: String!
}
"""
An API key. Grants access to the user's resources.
"""
type ApiKey implements Node {
"""
The time at which the entity was archived. Null if the entity has not been archived.
"""
archivedAt: DateTime
"""
The time at which the entity was created.
"""
createdAt: DateTime!
"""
The unique identifier of the entity.
"""
id: ID!
"""
The label of the API key.
"""
label: String!
"""
The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
been updated after creation.
"""
updatedAt: DateTime!
}
type ApiKeyConnection {
edges: [ApiKeyEdge!]!
nodes: [ApiKey!]!
pageInfo: PageInfo!
}
input ApiKeyCreateInput {
"""
The identifier in UUID v4 format. If none is provided, the backend will generate one.
"""
id: String
"""
The API key value.
"""
key: String!
"""
The label for the API key.
"""
label: String!
}
type ApiKeyEdge {
"""
Used in `before` and `after` args
"""
cursor: String!
node: ApiKey!
}
type ApiKeyPayload {
"""
The API key that was created.
"""
apiKey: ApiKey!
"""
The identifier of the last sync operation.
"""
lastSyncId: Float!
"""
Whether the operation was successful.
"""
success: Boolean!
}
"""
Public information of the OAuth application.
"""
type Application {
"""
OAuth application's client ID.
"""
clientId: String!
"""
Information about the application.
"""
description: String
"""
Name of the developer.
"""
developer: String!
"""
Url of the developer (homepage or docs).
"""
developerUrl: String!
"""
OAuth application's ID.
"""
id: String!
"""
Image of the application.
"""
imageUrl: String
"""
Application name.
"""
name: String!
}
type ArchivePayload {
"""
The identifier of the last sync operation.
"""
lastSyncId: Float!
"""
Whether the operation was successful.
"""
success: Boolean!
}
"""
Contains requested archived model objects.
"""
type ArchiveResponse {
"""
A JSON serialized collection of model objects loaded from the archive
"""
archive: String!
"""
The version of the remote database. Incremented by 1 for each migration run on the database.
"""
databaseVersion: Float!
"""
Whether the dependencies for the model objects are included in the archive.
"""
includesDependencies: Boolean!
"""
The total number of entities in the archive.
"""
totalCount: Float!
}
"""
Issue attachment (e.g. support ticket, pull request).
"""
type Attachment implements Node {
"""
The time at which the entity was archived. Null if the entity has not been archived.
"""
archivedAt: DateTime
"""
The time at which the entity was created.
"""
createdAt: DateTime!
"""
The creator of the attachment.
"""
creator: User
"""
Indicates if attachments for the same source application should be grouped in the Linear UI.
"""
groupBySource: Boolean!
"""
The unique identifier of the entity.
"""
id: ID!
"""
The issue this attachment belongs to.
"""
issue: Issue!
"""
Custom metadata related to the attachment.
"""
metadata: JSONObject!
"""
Information about the source which created the attachment.
"""
source: JSONObject
"""
An accessor helper to source.type, defines the source type of the attachment.
"""
sourceType: String
"""
Content for the subtitle line in the Linear attachment widget.
"""
subtitle: String
"""
Content for the title line in the Linear attachment widget.
"""
title: String!
"""
The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
been updated after creation.
"""
updatedAt: DateTime!
"""
Location of the attachment which is also used as an identifier.
"""
url: String!
}
"""
Attachment collection filtering options.
"""
input AttachmentCollectionFilter {
"""
Compound filters, all of which need to be matched by the attachment.
"""
and: [AttachmentCollectionFilter!]
"""
Comparator for the created at date.
"""
createdAt: DateComparator
"""
Filters that the attachments creator must satisfy.
"""
creator: NullableUserFilter
"""
Filters that needs to be matched by all attachments.
"""
every: AttachmentFilter
"""
Comparator for the identifier.
"""
id: IDComparator
"""
Comparator for the collection length.
"""
length: NumberComparator
"""
Compound filters, one of which need to be matched by the attachment.
"""
or: [AttachmentCollectionFilter!]
"""
Filters that needs to be matched by some attachments.
"""
some: AttachmentFilter
"""
Comparator for the source type.
"""
sourceType: SourceTypeComparator
"""
Comparator for the subtitle.
"""
subtitle: NullableStringComparator
"""
Comparator for the title.
"""
title: StringComparator
"""
Comparator for the updated at date.
"""
updatedAt: DateComparator
"""
Comparator for the url.
"""
url: StringComparator
}
type AttachmentConnection {
edges: [AttachmentEdge!]!
nodes: [Attachment!]!
pageInfo: PageInfo!
}
input AttachmentCreateInput {
"""
Create a linked comment with markdown body.
"""
commentBody: String
"""
Create a linked comment with Prosemirror body. Please use `commentBody` instead
"""
commentBodyData: JSONObject
"""
Create attachment as a user with the provided name. This option is only available to OAuth applications creating attachments in `actor=application` mode.
"""
createAsUser: String
"""
Indicates if attachments for the same source application should be grouped in the Linear UI.
"""
groupBySource: Boolean
"""
An icon url to display with the attachment. Should be of jpg or png format. Maximum of 1MB in size. Dimensions should be 20x20px for optimal display quality.
"""
iconUrl: String
"""
The identifier in UUID v4 format. If none is provided, the backend will generate one.
"""
id: String
"""
The issue to associate the attachment with.
"""
issueId: String!
"""
Attachment metadata object with string and number values.
"""
metadata: JSONObject
"""
The attachment subtitle.
"""
subtitle: String
"""
The attachment title.
"""
title: String!
"""
Attachment location which is also used as an unique identifier for the attachment. If another attachment is created with the same `url` value, existing record is updated instead.
"""
url: String!
}
type AttachmentEdge {
"""
Used in `before` and `after` args
"""
cursor: String!
node: Attachment!
}
"""
Attachment filtering options.
"""
input AttachmentFilter {
"""
Compound filters, all of which need to be matched by the attachment.
"""
and: [AttachmentFilter!]
"""
Comparator for the created at date.
"""
createdAt: DateComparator
"""
Filters that the attachments creator must satisfy.
"""
creator: NullableUserFilter
"""
Comparator for the identifier.
"""
id: IDComparator
"""
Compound filters, one of which need to be matched by the attachment.
"""
or: [AttachmentFilter!]
"""
Comparator for the source type.
"""
sourceType: SourceTypeComparator
"""
Comparator for the subtitle.
"""
subtitle: NullableStringComparator
"""
Comparator for the title.
"""
title: StringComparator
"""
Comparator for the updated at date.
"""
updatedAt: DateComparator
"""
Comparator for the url.
"""
url: StringComparator
}
type AttachmentPayload {
"""
The issue attachment that was created.
"""
attachment: Attachment!
"""
The identifier of the last sync operation.
"""
lastSyncId: Float!
"""
Whether the operation was successful.
"""
success: Boolean!
}
input AttachmentUpdateInput {
"""
An icon url to display with the attachment. Should be of jpg or png format. Maximum of 1MB in size. Dimensions should be 20x20px for optimal display quality.
"""
iconUrl: String
"""
Attachment metadata object with string and number values.
"""
metadata: JSONObject
"""
The attachment subtitle.
"""
subtitle: String
"""
The attachment title.
"""
title: String!
}
"""
Workspace audit log entry object.
"""
type AuditEntry implements Node {
"""
The user that caused the audit entry to be created.
"""
actor: User
"""
The ID of the user that caused the audit entry to be created.
"""
actorId: String
"""
The time at which the entity was archived. Null if the entity has not been archived.
"""
archivedAt: DateTime
"""
Country code of request resulting to audit entry.
"""
countryCode: String
"""
The time at which the entity was created.
"""
createdAt: DateTime!
"""
The unique identifier of the entity.
"""
id: ID!
"""
IP from actor when entry was recorded.
"""
ip: String
"""
Additional metadata related to the audit entry.
"""
metadata: JSONObject
"""
The organization the audit log belongs to.
"""
organization: Organization
"""
Additional information related to the request which performed the action.
"""
requestInformation: JSONObject
type: String!
"""
The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
been updated after creation.
"""
updatedAt: DateTime!
}
type AuditEntryConnection {
edges: [AuditEntryEdge!]!
nodes: [AuditEntry!]!
pageInfo: PageInfo!
}
type AuditEntryEdge {
"""
Used in `before` and `after` args
"""
cursor: String!
node: AuditEntry!
}
"""
Audit entry filtering options.
"""
input AuditEntryFilter {
"""
Filters that the audit entry actor must satisfy.
"""
actor: NullableUserFilter
"""
Comparator for the country code.
"""
countryCode: StringComparator
"""
Comparator for the created at date.
"""
createdAt: DateComparator
"""
Comparator for the identifier.
"""
id: IDComparator
"""
Comparator for the IP address.
"""
ip: StringComparator
"""
Comparator for the type.
"""
type: StringComparator
"""
Comparator for the updated at date.
"""
updatedAt: DateComparator
}
type AuditEntryType {
"""
Description of the audit entry type.
"""
description: String!
"""
The audit entry type.
"""
type: String!
}
"""
[INTERNAL] An OAuth userId/createdDate tuple
"""
type AuthMembership {
"""
The date of the authorization
"""
createdAt: DateTime!
"""
The authorizing userId
"""
userId: String!
}
type AuthResolverResponse {
"""
Should the signup flow allow access for the domain.
"""
allowDomainAccess: Boolean
"""
Organizations this account has access to, but is not yet a member.
"""
availableOrganizations: [Organization!]
"""
Email for the authenticated account.
"""
email: String
"""
User account ID.
"""
id: String!
"""
ID of the organization last accessed by the user.
"""
lastUsedOrganizationId: String
"""
JWT token for authentication of the account.
"""
token: String
"""
Users belonging to this account.
"""
users: [User!]!
}
"""
[INTERNAL] Public information of the OAuth application, plus the authorized scopes for a given user.
"""
type AuthorizedApplication {
"""
OAuth application's ID.
"""
appId: String!
"""
OAuth application's client ID.
"""
clientId: String!
"""
Image of the application.
"""
imageUrl: String
"""
Application name.
"""
name: String!
"""
Scopes that are authorized for this application for a given user.
"""
scope: [String!]!
"""
Whether or not webhooks are enabled for the application.
"""
webhooksEnabled: Boolean!
}
"""
Comparator for booleans.
"""
input BooleanComparator {
"""
Equals constraint.
"""
eq: Boolean
"""
Not equals constraint.
"""
neq: Boolean
}
"""
A comment associated with an issue.
"""
type Comment implements Node {
"""
The time at which the entity was archived. Null if the entity has not been archived.
"""
archivedAt: DateTime
"""
The comment content in markdown format.
"""
body: String!
"""
The comment content as a Prosemirror document.
"""
bodyData: String!
"""
The children of the comment.
"""
children(
"""
A cursor to be used with first for forward pagination
"""
after: String
"""
A cursor to be used with last for backward pagination.
"""
before: String
"""
Filter returned comments.
"""
filter: CommentFilter
"""
The number of items to forward paginate (used with after). Defaults to 50.
"""
first: Int
"""
Should archived resources be included (default: false)
"""
includeArchived: Boolean
"""
The number of items to backward paginate (used with before). Defaults to 50.
"""
last: Int
"""
By which field should the pagination order by. Available options are createdAt (default) and updatedAt.
"""
orderBy: PaginationOrderBy
): CommentConnection!
"""
The time at which the entity was created.
"""
createdAt: DateTime!
"""
The time user edited the comment.
"""
editedAt: DateTime
"""
[ALPHA] The external user who wrote the comment.
"""
externalUser: ExternalUser
"""
The unique identifier of the entity.
"""
id: ID!
"""
The issue that the comment is associated with.
"""
issue: Issue!
"""
The parent comment under which the current comment is nested.
"""
parent: Comment
"""
Emoji reaction summary, grouped by emoji type
"""
reactionData: JSONObject!
"""
The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
been updated after creation.
"""
updatedAt: DateTime!
"""
Comment's URL.
"""
url: String!
"""
The user who wrote the comment.
"""
user: User
}
"""
Comment filtering options.
"""
input CommentCollectionFilter {
"""
Compound filters, all of which need to be matched by the comment.
"""
and: [CommentCollectionFilter!]
"""
Comparator for the comments body.
"""
body: StringComparator
"""
Comparator for the created at date.
"""
createdAt: DateComparator
"""
Filters that needs to be matched by all comments.
"""
every: CommentFilter
"""
Comparator for the identifier.
"""
id: IDComparator
"""
Filters that the comments issue must satisfy.
"""
issue: IssueFilter
"""
Comparator for the collection length.
"""
length: NumberComparator
"""
Compound filters, one of which need to be matched by the comment.
"""
or: [CommentCollectionFilter!]
"""
Filters that needs to be matched by some comments.
"""
some: CommentFilter
"""
Comparator for the updated at date.
"""
updatedAt: DateComparator
"""
Filters that the comments creator must satisfy.
"""
user: UserFilter
}
type CommentConnection {
edges: [CommentEdge!]!
nodes: [Comment!]!
pageInfo: PageInfo!
}
input CommentCreateInput {
"""
The comment content in markdown format.
"""
body: String
"""
The comment content as a Prosemirror document.
"""
bodyData: JSON
"""
Create comment as a user with the provided name. This option is only available to OAuth applications creating comments in `actor=application` mode.
"""
createAsUser: String
"""
The date when the comment was created (e.g. if importing from another system). Must be a date in the past. If none is provided, the backend will generate the time as now.
"""
createdAt: DateTime
"""
Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode.
"""
displayIconUrl: String
"""
Flag to prevent auto subscription to the issue the comment is created on.
"""
doNotSubscribeToIssue: Boolean
"""
The identifier in UUID v4 format. If none is provided, the backend will generate one.
"""
id: String
"""
The issue to associate the comment with.
"""
issueId: String!
"""
The parent comment under which to nest a current comment.
"""
parentId: String
}
type CommentEdge {
"""
Used in `before` and `after` args
"""
cursor: String!
node: Comment!
}
"""
Comment filtering options.
"""
input CommentFilter {
"""
Compound filters, all of which need to be matched by the comment.
"""
and: [CommentFilter!]
"""
Comparator for the comments body.
"""
body: StringComparator
"""
Comparator for the created at date.
"""
createdAt: DateComparator
"""
Comparator for the identifier.
"""
id: IDComparator
"""
Filters that the comments issue must satisfy.
"""
issue: IssueFilter
"""
Compound filters, one of which need to be matched by the comment.
"""
or: [CommentFilter!]
"""
Comparator for the updated at date.
"""
updatedAt: DateComparator
"""
Filters that the comments creator must satisfy.
"""
user: UserFilter
}
type CommentPayload {
"""
The comment that was created or updated.
"""
comment: Comment!
"""
The identifier of the last sync operation.
"""
lastSyncId: Float!
"""
Whether the operation was successful.
"""
success: Boolean!
}
input CommentUpdateInput {
"""
The comment content.
"""
body: String
"""
The comment content as a Prosemirror document.
"""
bodyData: JSON
}
"""
A company related to issue's origin.
"""
type Company implements Node {
"""
The time at which the entity was archived. Null if the entity has not been archived.
"""
archivedAt: DateTime
"""
Custom company properties.
"""
companyProperties: JSONObject!
"""
The time at which the entity was created.
"""
createdAt: DateTime!
"""
The user who added the company.
"""
creator: User!
"""
Company ID in an external system.
"""
externalId: String!
"""
The unique identifier of the entity.
"""
id: ID!
"""
Company logo URL.
"""
logoUrl: String
"""
Company name.
"""
name: String!
"""
The organization of the customer.
"""
organization: Organization!
"""
The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
been updated after creation.
"""
updatedAt: DateTime!
"""
Company website URL.
"""
websiteUrl: String
}
type CompanyConnection {
edges: [CompanyEdge!]!
nodes: [Company!]!
pageInfo: PageInfo!
}
type CompanyEdge {
"""
Used in `before` and `after` args
"""
cursor: String!
node: Company!
}
input ContactCreateInput {
"""
User's browser information.
"""
browser: String
"""
User's Linear client information.
"""
clientVersion: String
"""
User's device information.
"""
device: String
"""
How disappointed the user would be if they could no longer use Linear.
"""
disappointmentRating: Int
"""
The message the user sent.
"""
message: String!
"""
User's operating system.
"""
operatingSystem: String
"""
The type of support contact.
"""
type: String!
}
type ContactPayload {
"""
Whether the operation was successful.
"""
success: Boolean!
}
"""
[INTERNAL] Input for sending a message to the Linear Sales team
"""
input ContactSalesCreateInput {
"""
Work email of the person requesting information.
"""
email: String!
"""
The message the user sent.
"""
message: String
"""
Name of the person requesting information.
"""
name: String!
}
"""
[Internal] Comparator for content.
"""
input ContentComparator {
"""
[Internal] Contains constraint.
"""