-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.graphql
21651 lines (16295 loc) · 549 KB
/
schema.graphql
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
"""Exposes a URL that specifies the behaviour of this scalar."""
directive @specifiedBy(
"""The URL that specifies the behaviour of this scalar."""
url: String!
) on SCALAR
"""
A bot actor is an actor that is not a user, but an application or integration.
"""
type ActorBot {
id: ID
"""The type of bot."""
type: String!
"""The sub type of the bot."""
subType: String
"""The display name of the bot."""
name: String
"""
The display name of the external user on behalf of which the bot acted.
"""
userDisplayName: String
"""A url pointing to the avatar representing this bot."""
avatarUrl: String
}
input AirbyteConfigurationInput {
"""Linear export API key."""
apiKey: String!
}
"""An API key. Grants access to the user's resources."""
type ApiKey implements Node {
"""The unique identifier of the entity."""
id: ID!
"""The time at which the entity was created."""
createdAt: DateTime!
"""
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!
"""
The time at which the entity was archived. Null if the entity has not been archived.
"""
archivedAt: DateTime
"""The label of the API key."""
label: String!
}
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 label for the API key."""
label: String!
"""The API key value."""
key: String!
}
type ApiKeyEdge {
node: ApiKey!
"""Used in `before` and `after` args"""
cursor: String!
}
type ApiKeyPayload {
"""The identifier of the last sync operation."""
lastSyncId: Float!
"""The API key that was created."""
apiKey: ApiKey!
"""Whether the operation was successful."""
success: Boolean!
}
"""Public information of the OAuth application."""
type Application {
"""OAuth application's ID."""
id: String!
"""OAuth application's client ID."""
clientId: String!
"""Application name."""
name: String!
"""Information about the application."""
description: String
"""Name of the developer."""
developer: String!
"""Url of the developer (homepage or docs)."""
developerUrl: String!
"""Image of the application."""
imageUrl: String
}
"""A generic payload return from entity archive or deletion mutations."""
interface 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 total number of entities in the archive."""
totalCount: Float!
"""
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!
}
type AsksChannelConnectPayload {
"""The identifier of the last sync operation."""
lastSyncId: Float!
"""The integration that was created or updated."""
integration: Integration
"""Whether the operation was successful."""
success: Boolean!
"""The new Asks Slack channel mapping for the connected channel."""
mapping: SlackChannelNameMapping!
"""Whether the bot needs to be manually added to the channel."""
addBot: Boolean!
}
"""Issue assignee sorting options."""
input AssigneeSort {
"""Whether nulls should be sorted first or last"""
nulls: PaginationNulls = last
"""The order for the individual sort"""
order: PaginationSortOrder
}
"""Issue attachment (e.g. support ticket, pull request)."""
type Attachment implements Node {
"""The unique identifier of the entity."""
id: ID!
"""The time at which the entity was created."""
createdAt: DateTime!
"""
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!
"""
The time at which the entity was archived. Null if the entity has not been archived.
"""
archivedAt: DateTime
"""Content for the title line in the Linear attachment widget."""
title: String!
"""Content for the subtitle line in the Linear attachment widget."""
subtitle: String
"""Location of the attachment which is also used as an identifier."""
url: String!
"""The creator of the attachment."""
creator: User
"""The non-Linear user who created the attachment."""
externalUserCreator: ExternalUser
"""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
"""
Indicates if attachments for the same source application should be grouped in the Linear UI.
"""
groupBySource: Boolean!
"""The issue this attachment belongs to."""
issue: Issue!
}
"""A generic payload return from entity archive mutations."""
type AttachmentArchivePayload implements ArchivePayload {
"""The identifier of the last sync operation."""
lastSyncId: Float!
"""Whether the operation was successful."""
success: Boolean!
"""The archived/unarchived entity. Null if entity was deleted."""
entity: Attachment
}
"""Attachment collection filtering options."""
input AttachmentCollectionFilter {
"""Comparator for the identifier."""
id: IDComparator
"""Comparator for the created at date."""
createdAt: DateComparator
"""Comparator for the updated at date."""
updatedAt: DateComparator
"""Comparator for the title."""
title: StringComparator
"""Comparator for the subtitle."""
subtitle: NullableStringComparator
"""Comparator for the url."""
url: StringComparator
"""Filters that the attachments creator must satisfy."""
creator: NullableUserFilter
"""Comparator for the source type."""
sourceType: SourceTypeComparator
"""Compound filters, all of which need to be matched by the attachment."""
and: [AttachmentCollectionFilter!]
"""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
"""Filters that needs to be matched by all attachments."""
every: AttachmentFilter
"""Comparator for the collection length."""
length: NumberComparator
}
type AttachmentConnection {
edges: [AttachmentEdge!]!
nodes: [Attachment!]!
pageInfo: PageInfo!
}
input AttachmentCreateInput {
"""
The identifier in UUID v4 format. If none is provided, the backend will generate one.
"""
id: String
"""The attachment title."""
title: String!
"""The attachment subtitle."""
subtitle: 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!
"""The issue to associate the attachment with."""
issueId: String!
"""
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
"""
Indicates if attachments for the same source application should be grouped in the Linear UI.
"""
groupBySource: Boolean
"""Create a linked comment with markdown body."""
commentBody: String
"""
[Internal] 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
}
type AttachmentEdge {
node: Attachment!
"""Used in `before` and `after` args"""
cursor: String!
}
"""Attachment filtering options."""
input AttachmentFilter {
"""Comparator for the identifier."""
id: IDComparator
"""Comparator for the created at date."""
createdAt: DateComparator
"""Comparator for the updated at date."""
updatedAt: DateComparator
"""Comparator for the title."""
title: StringComparator
"""Comparator for the subtitle."""
subtitle: NullableStringComparator
"""Comparator for the url."""
url: StringComparator
"""Filters that the attachments creator must satisfy."""
creator: NullableUserFilter
"""Comparator for the source type."""
sourceType: SourceTypeComparator
"""Compound filters, all of which need to be matched by the attachment."""
and: [AttachmentFilter!]
"""Compound filters, one of which need to be matched by the attachment."""
or: [AttachmentFilter!]
}
type AttachmentPayload {
"""The identifier of the last sync operation."""
lastSyncId: Float!
"""The issue attachment that was created."""
attachment: Attachment!
"""Whether the operation was successful."""
success: Boolean!
}
type AttachmentSourcesPayload {
"""A unique list of all source types used in this workspace."""
sources: JSONObject!
}
input AttachmentUpdateInput {
"""The attachment title."""
title: String!
"""The attachment subtitle."""
subtitle: String
"""Attachment metadata object with string and number values."""
metadata: JSONObject
"""
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
}
"""Workspace audit log entry object."""
type AuditEntry implements Node {
"""The unique identifier of the entity."""
id: ID!
"""The time at which the entity was created."""
createdAt: DateTime!
"""
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!
"""
The time at which the entity was archived. Null if the entity has not been archived.
"""
archivedAt: DateTime
type: String!
"""The organization the audit log belongs to."""
organization: Organization
"""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
"""IP from actor when entry was recorded."""
ip: String
"""Country code of request resulting to audit entry."""
countryCode: String
"""Additional metadata related to the audit entry."""
metadata: JSONObject
"""
Additional information related to the request which performed the action.
"""
requestInformation: JSONObject
}
type AuditEntryConnection {
edges: [AuditEntryEdge!]!
nodes: [AuditEntry!]!
pageInfo: PageInfo!
}
type AuditEntryEdge {
node: AuditEntry!
"""Used in `before` and `after` args"""
cursor: String!
}
"""Audit entry filtering options."""
input AuditEntryFilter {
"""Comparator for the identifier."""
id: IDComparator
"""Comparator for the created at date."""
createdAt: DateComparator
"""Comparator for the updated at date."""
updatedAt: DateComparator
"""Comparator for the type."""
type: StringComparator
"""Comparator for the IP address."""
ip: StringComparator
"""Comparator for the country code."""
countryCode: StringComparator
"""Filters that the audit entry actor must satisfy."""
actor: NullableUserFilter
}
type AuditEntryType {
"""The audit entry type."""
type: String!
"""Description of the audit entry type."""
description: String!
}
type AuthApiKey {
"""The unique identifier of the entity."""
id: ID!
}
input AuthApiKeyCreateInput {
"""
The identifier in UUID v4 format. If none is provided, the backend will generate one.
"""
id: String
"""The label for the API key."""
label: String!
"""The API key value."""
key: String!
}
type AuthApiKeyPayload {
"""Whether the operation was successful."""
success: Boolean!
"""The auth API key that was created."""
authApiKey: AuthApiKey!
}
"""An email address that can be used for submitting issues."""
type AuthEmailIntakeAddress {
"""The unique identifier of the entity."""
id: ID!
"""Unique email address user name (before @) used for incoming email."""
address: String!
"""Whether the email address is enabled."""
enabled: Boolean!
"""The auth organization that the email address is associated with."""
organization: AuthOrganization!
"""The auth user who created the email intake address."""
creator: AuthUser
}
"""User authentication session."""
type AuthenticationSession {
id: String!
"""Type of application used to authenticate."""
type: AuthenticationSessionType!
"""IP address."""
ip: String
"""Location country name."""
locationCountry: String
"""Location country code."""
locationCountryCode: String
"""Country codes of all seen locations."""
countryCodes: [String!]!
"""Location region code."""
locationRegionCode: String
"""Location city name."""
locationCity: String
"""Session's user-agent."""
userAgent: String
"""Used web browser."""
browserType: String
"""When was the session last seen"""
lastActiveAt: DateTime
"""Date when the session was created."""
createdAt: DateTime!
"""Date when the session was last updated."""
updatedAt: DateTime!
"""Human readable location"""
location: String
"""Operating system used for the session"""
operatingSystem: String
"""Client used for the session"""
client: String
"""Name of the session, derived from the client and operating system"""
name: String!
}
"""Authentication session information."""
type AuthenticationSessionResponse {
id: String!
"""Type of application used to authenticate."""
type: AuthenticationSessionType!
"""IP address."""
ip: String
"""Location country name."""
locationCountry: String
"""Location country code."""
locationCountryCode: String
"""Country codes of all seen locations."""
countryCodes: [String!]!
"""Location region code."""
locationRegionCode: String
"""Location city name."""
locationCity: String
"""Session's user-agent."""
userAgent: String
"""Used web browser."""
browserType: String
"""When was the session last seen"""
lastActiveAt: DateTime
"""Date when the session was created."""
createdAt: DateTime!
"""Date when the session was last updated."""
updatedAt: DateTime!
"""Human readable location"""
location: String
"""Operating system used for the session"""
operatingSystem: String
"""Client used for the session"""
client: String
"""Name of the session, derived from the client and operating system"""
name: String!
"""Identifies the session used to make the request."""
isCurrentSession: Boolean!
}
enum AuthenticationSessionType {
web
desktop
ios
android
}
type AuthIntegration {
"""The unique identifier of the entity."""
id: ID!
}
"""[INTERNAL] An OAuth userId/createdDate tuple"""
type AuthMembership {
"""The authorizing userId"""
userId: String!
"""The date of the authorization"""
createdAt: DateTime!
}
type AuthOauthClient {
"""The unique identifier of the entity."""
id: ID!
"""OAuth application's client ID."""
clientId: String!
"""OAuth application's client name."""
name: String!
"""Information about the application."""
description: String
"""Name of the developer."""
developer: String!
"""Url of the developer."""
developerUrl: String!
"""Image of the application."""
imageUrl: String
"""OAuth application's client secret."""
clientSecret: String!
"""List of allowed redirect URIs for the application."""
redirectUris: [String!]!
"""Whether the OAuth application can be installed in other organizations."""
publicEnabled: Boolean!
"""The ID of the user who created the OAuth application."""
creatorId: String!
"""The ID of the workspace the OAuth application belongs to."""
organizationId: String!
"""The resource types to request when creating new webhooks."""
webhookResourceTypes: [String!]!
"""Webhook URL"""
webhookUrl: String
"""Webhook secret"""
webhookSecret: String
archivedAt: DateTime
}
"""
AuthOauthClient with token creator IDs and counts (memberships), for use in the GraphQL API.
"""
type AuthOauthClientWithMemberships {
"""Application name."""
name: String!
"""Image of the application."""
imageUrl: String
"""Scopes that are authorized for this application for a given user."""
scope: [String!]!
"""OAuth application's ID."""
appId: String!
"""OAuth application's client ID."""
clientId: String!
"""The application's webhook URL."""
webhookUrl: String
"""Total number of members that authorized the application."""
totalMembers: Float!
"""
User IDs and membership dates of everyone who has authorized the application with the set of scopes.
"""
memberships: [AuthMembership!]!
}
"""
AuthOauthClient with scope from OauthToken, for use in the GraphQL API.
"""
type AuthOauthClientWithScope {
"""Application name."""
name: String!
"""Image of the application."""
imageUrl: String
"""Scopes that are authorized for this application for a given user."""
scope: [String!]!
"""OAuth application's ID."""
appId: String!
"""OAuth application's client ID."""
clientId: String!
"""The application's webhook URL."""
webhookUrl: String
}
type AuthOauthClientWithTokens {
"""The auth OAuth client."""
client: AuthOauthClient!
"""The token matching the app, scope, and actor."""
tokens: [OauthToken!]!
}
"""
An organization. Organizations are root-level objects that contain users and teams.
"""
type AuthOrganization {
"""The unique identifier of the entity."""
id: ID!
"""The organization's name."""
name: String!
"""
Whether the organization is enabled. Used as a superuser tool to lock down the org.
"""
enabled: Boolean!
"""The organization's unique URL key."""
urlKey: String!
"""
Previously used URL keys for the organization (last 3 are kept and redirected).
"""
previousUrlKeys: [String!]!
"""The organization's logo URL."""
logoUrl: String
"""The time at which deletion of the organization was requested."""
deletionRequestedAt: DateTime
"""The feature release channel the organization belongs to."""
releaseChannel: ReleaseChannel!
"""Whether SAML authentication is enabled for organization."""
samlEnabled: Boolean!
"""[INTERNAL] SAML settings"""
samlSettings: JSONObject
"""Allowed authentication providers, empty array means all are allowed"""
allowedAuthServices: [String!]!
"""Whether SCIM provisioning is enabled for organization."""
scimEnabled: Boolean!
"""The email domain or URL key for the organization."""
serviceId: String!
"""The region the organization is hosted in."""
region: String!
userCount: Float!
}
type AuthOrganizationBucketNamePayload {
"""The region for the organization."""
region: String!
"""The imports bucket name for the organization."""
importsBucketName: String!
"""The uploads bucket name for the organization."""
uploadsBucketName: String!
}
type AuthOrganizationDomain {
"""The unique identifier of the entity."""
id: ID!
organizationId: String!
name: String!
verified: Boolean!
claimed: Boolean
"""Prevent users with this domain to create new workspaces."""
disableOrganizationCreation: Boolean
authType: OrganizationDomainAuthType!
}
type AuthOrganizationExistsPayload {
"""Whether the operation was successful."""
success: Boolean!
"""Whether the organization exists."""
exists: Boolean!
}
"""An invitation to the organization that has been sent via email."""
type AuthOrganizationInvite {
"""The unique identifier of the entity."""
id: ID!
"""
The time at which the invite will be expiring. Null, if the invite shouldn't expire.
"""
expiresAt: DateTime
}
type AuthOrganizationPayload {
"""Whether the operation was successful."""
success: Boolean!
"""The auth organization that was updated."""
authOrganization: AuthOrganization!
}
input AuthOrganizationUpdateInput {
"""The organization's unique URL key."""
urlKey: String
"""The organization's unique invite hash."""
inviteHash: String
}
"""
[INTERNAL] Public information of the OAuth application, plus the authorized scopes for a given user.
"""
type AuthorizedApplication {
"""Application name."""
name: String!
"""Image of the application."""
imageUrl: String
"""Scopes that are authorized for this application for a given user."""
scope: [String!]!
"""OAuth application's ID."""
appId: String!
"""OAuth application's client ID."""
clientId: String!
"""Whether or not webhooks are enabled for the application."""
webhooksEnabled: Boolean!
}
type AuthorizedApplicationBase {
"""Application name."""
name: String!
"""Image of the application."""
imageUrl: String
"""Scopes that are authorized for this application for a given user."""
scope: [String!]!
"""OAuth application's ID."""
appId: String!
"""OAuth application's client ID."""
clientId: String!
}
type AuthResolverResponse {
"""User account ID."""
id: String!
"""Email for the authenticated account."""
email: String!
"""Should the signup flow allow access for the domain."""
allowDomainAccess: Boolean
"""List of active users that belong to the user account."""
users: [AuthUser!]!
"""List of locked users that are locked by login restrictions"""
lockedUsers: [AuthUser!]!
"""
List of organizations allowing this user account to join automatically.
"""
availableOrganizations: [AuthOrganization!]
"""
List of organization available to this user account but locked due to the current auth method.
"""
lockedOrganizations: [AuthOrganization!]
"""ID of the organization last accessed by the user."""
lastUsedOrganizationId: String
"""Application token."""
token: String @deprecated(reason: "Deprecated and not used anymore. Never populated.")
}
type AuthSuccessPayload {
"""Whether the operation was successful."""
success: Boolean!
}
"""A user that has access to the the resources of an organization."""
type AuthUser {
id: ID!
"""The user's full name."""
name: String!
"""The user's display (nick) name. Unique within each organization."""
displayName: String!
"""The user's email address."""
email: String!
"""An URL to the user's avatar image."""
avatarUrl: String
"""
Whether the user is an organization admin or guest on a database level.
"""
role: UserRoleType!