Invite
Invite represents a given User that is pending registration that has been invited by an Administrator.
type Invite { id: ID! email: String! role: USER_ROLE! createdBy: User! createdAt: Time!}
#
Fieldsid
(ID!
)#
id is the identifier for the Invite.
email
(String!
)#
email is the email address that will be assigned and used for the invited User.
role
(USER_ROLE!
)#
role is the USER_ROLE that the User will be assigned upon account creation.
createdBy
(User!
)#
createdBy is the User that created the Invite.
createdAt
(Time!
)#
createdAt is the time that the Invite was created on.