@@ -274,6 +274,16 @@ export default gql`
274
274
organization: Organization!
275
275
}
276
276
277
+ type MemberRoleEdge {
278
+ node: MemberRole! @tag(name: "public")
279
+ cursor: String!
280
+ }
281
+
282
+ type MemberRoleConnection {
283
+ edges: [MemberRoleEdge!]! @tag(name: "public")
284
+ pageInfo: PageInfo!
285
+ }
286
+
277
287
type Organization {
278
288
"""
279
289
Unique UUID of the organization
@@ -285,13 +295,13 @@ export default gql`
285
295
slug: String! @tag(name: "public")
286
296
cleanId: ID! @deprecated(reason: "Use the 'slug' field instead.")
287
297
name: String! @deprecated(reason: "Use the 'slug' field instead.")
288
- owner: Member!
298
+ owner: Member! @tag(name: "public")
289
299
me: Member!
290
300
members(first: Int @tag(name: "public"), after: String @tag(name: "public")): MemberConnection!
291
301
@tag(name: "public")
292
- invitations: OrganizationInvitationConnection
302
+ invitations: OrganizationInvitationConnection @tag(name: "public")
293
303
getStarted: OrganizationGetStarted!
294
- memberRoles: [MemberRole!]
304
+ memberRoles: MemberRoleConnection @tag(name: "public")
295
305
"""
296
306
Whether the viewer should be able to access the settings page within the app
297
307
"""
@@ -331,7 +341,7 @@ export default gql`
331
341
"""
332
342
List of available permission groups that can be assigned to users.
333
343
"""
334
- availableMemberPermissionGroups: [PermissionGroup!]!
344
+ availableMemberPermissionGroups: [PermissionGroup!]! @tag(name: "public")
335
345
"""
336
346
List of available permission groups that can be assigned to organization access tokens.
337
347
"""
@@ -368,9 +378,14 @@ export default gql`
368
378
total: Int!
369
379
}
370
380
381
+ type OrganizationInvitationEdge {
382
+ node: OrganizationInvitation! @tag(name: "public")
383
+ cursor: String!
384
+ }
385
+
371
386
type OrganizationInvitationConnection {
372
- nodes : [OrganizationInvitation !]!
373
- total: Int !
387
+ edges : [OrganizationInvitationEdge !]! @tag(name: "public")
388
+ pageInfo: PageInfo !
374
389
}
375
390
376
391
type OrganizationInvitation {
@@ -422,9 +437,9 @@ export default gql`
422
437
}
423
438
424
439
type MemberRole {
425
- id: ID!
426
- name: String!
427
- description: String!
440
+ id: ID! @tag(name: "public")
441
+ name: String! @tag(name: "public")
442
+ description: String! @tag(name: "public")
428
443
"""
429
444
Whether the role is a built-in role. Built-in roles cannot be deleted or modified.
430
445
"""
@@ -448,7 +463,7 @@ export default gql`
448
463
"""
449
464
List of permissions attached to this member role.
450
465
"""
451
- permissions: [String!]!
466
+ permissions: [String!]! @tag(name: "public")
452
467
}
453
468
454
469
input CreateMemberRoleInput {
@@ -563,11 +578,11 @@ export default gql`
563
578
564
579
type Member {
565
580
id: ID!
566
- user: User!
567
- isOwner: Boolean!
581
+ user: User! @tag(name: "public")
582
+ isOwner: Boolean! @tag(name: "public")
568
583
canLeaveOrganization: Boolean!
569
- role: MemberRole!
570
- resourceAssignment: ResourceAssignment!
584
+ role: MemberRole! @tag(name: "public")
585
+ resourceAssignment: ResourceAssignment! @tag(name: "public")
571
586
"""
572
587
Whether the viewer can remove this member from the organization.
573
588
"""
0 commit comments