OBJECT
OrganizationInvite
An invitation to join a developer organization under a given role.
link GraphQL Schema definition
1 type OrganizationInvite { 2 3 # When the invitation was created. 4 : Time! 5 6 # The date and time the invite will expire. 7 : Time! 8 9 # The invites's unique identifier. 10 : ID! 11 12 # User the invitation if for. 13 : User 14 15 # User who created the invitation. 16 : User 17 18 # ID of the organization the invitation is for. 19 : ID! 20 21 # Name of the organization the invitation is for. 22 : String! 23 24 # Role the invitation is for. 25 : OrganizationMemberRole! 26 27 }