OBJECT

OrganizationMember

A RBAC user.

link GraphQL Schema definition

1type OrganizationMember {
2
3# Users email.
4email: String!
5
6# Users first name.
7firstName: String!
8
9# Twitch user id.
10id: ID!
11
12# Users last name.
13lastName: String!
14
15# Users role.
16role: OrganizationMemberRole!
17
18# Users title.
19title: String!
20
21# The Twitch user associated with the RBAC user.
22user: User
23
24}