GraphQL reference

BulkReinviteMembershipsInput

Input

Autogenerated input type of BulkReinviteMemberships

mutation { organization(id: $organizationId) { project(id: $projectId) { bulkReinviteMemberships } } }

Example

mutation BulkReinviteMemberships(
  $organizationId: ID!
  $projectId: ID!
  $input: BulkReinviteMembershipsInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      bulkReinviteMemberships(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
bodyStringCustom invitation body for human-authored invitations. Agents must omit this argument to use the approved template.
clientMutationIdStringA unique identifier for the client performing the mutation.
mutationMetadataJSON
projectMembershipIds[ID!]!
subjectStringCustom invitation subject for human-authored invitations. Agents must omit this argument.