BulkReinviteMembershipsInput
InputAutogenerated 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
| Field | Type | Description |
|---|---|---|
| body | String | Custom invitation body for human-authored invitations. Agents must omit this argument to use the approved template. |
| clientMutationId | String | A unique identifier for the client performing the mutation. |
| mutationMetadata | JSON | — |
| projectMembershipIds | [ID!]! | — |
| subject | String | Custom invitation subject for human-authored invitations. Agents must omit this argument. |