OBJECT

OrganizationInvitation

An Invitation for a user to an organization.

link GraphQL Schema definition

  • type OrganizationInvitation {
  • # The email address of the user invited to the organization.
  • email: String
  • id: ID!
  • # The user who created the invitation.
  • inviter: User!
  • # The login of the user invited to the organization.
  • login: String
  • # The user's pending role in the organization (e.g. member, owner).
  • role: OrganizationInvitationRole!
  • }