getMembers

Will return all members listed for the current org.

Examples

query GetMembers {
  getMembers {
    user_id
    picture
    name
    email
    roles {
      id
      name
      description
    }
    scopes
  }
}

Fields

Return type: [Member]

You can use the following field(s) to specify what information your getMembers query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

user_id String

Unique identifier of the user

picture String

URL to the user's profile picture

name String

Full display name of the user

email String

Email address of the user

roles [Role]

List of roles assigned to this user within the organization

id String name String description String

scopes String

Permission scopes assigned to this user within the organization

Last updated