Objects
TeamMember
Represents a user within a team.
| Field |
Type |
Description |
| id |
ID! |
The ID of the object. |
| user |
User! |
The User instance. |
| role |
TeamMemberRole! |
The role this user has in the team. |
| isOwner |
Boolean! |
Whether this user is the owner of the team. |
| joinedAt |
DateTime! |
The time when this user joined the team. |
TeamMemberConnection
| Field |
Type |
Description |
| pageInfo |
PageInfo! |
Pagination data for this connection.
|
| edges |
[TeamMemberEdge]! |
Contains the nodes in this connection.
|
| totalCount |
Int |
|
TeamMemberEdge
A Relay edge containing a TeamMember and its cursor.
| Field |
Type |
Description |
| node |
TeamMember |
The item at the end of the edge.
|
| cursor |
String! |
A cursor for use in pagination.
|