Skip to main content

Invitation

An Invitation is a pending request for a user to join a Group. Once accepted, the invitation becomes a GroupMember record.

Fields

FieldTypeDescription
idID!Unique identifier
emailAWSEmail!Email address of the invitee
createdAWSDateTimeWhen the invitation was created
modifiedAWSDateTimeWhen the invitation was last modified
permissionGroupPermissionPermission level to grant (ADMINISTER, EDIT, READ, etc.)

Query

Invitations are accessed via Group.invitationConnection:

query GetGroupInvitations {
group(id: "Z3JwbGVnYWxlc2lnbxRldg==") {
invitationConnection {
invitations {
id
email
created
modified
permission
}
}
}
}
  • Group — the group being invited to
  • GroupMember — the resulting membership after acceptance

Export This Article

Save a copy of this page as PDF or plain text.