GraphQL reference

SendDueDateReminderInput

Input

Autogenerated input type of SendDueDateReminder

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

Example

mutation SendDueDateReminder(
  $organizationId: ID!
  $projectId: ID!
  $input: SendDueDateReminderInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      sendDueDateReminder(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
entityIdID!
entityTypeString!
mutationMetadataJSON