Invite Users to Tenant With GraphQL

You can use the following query:

mutation {
  createMembershipInvitation(
    input: {email: "jessica.smith@test.com", role: TENANT_ADMIN}
  ) {
    id
  }
}