OBJECT

SourceCollaborator

A source ACL grants a single organization limited rights to a private source

link GraphQL Schema definition

1type SourceCollaborator {
2
3# The permission granted. Either `viewer` or `editor`.
4permission: SourcePermission!
5
6# Organization ID the source was shared with
7organizationId: ID!
8
9# The organization the source was shared with
10organization: Organization
11
12}