INPUT_OBJECT

UpdateInvoiceAttachmentMutationInput

The input object that defines the fields for the updateInvoiceAttachment mutation.

link GraphQL Schema definition

  • input UpdateInvoiceAttachmentMutationInput {
  • # A descriptive name.
  • name: String
  • # The date to start attaching this PDF to invoices.
  • start: Date
  • # The date to stop attaching this PDF to invoices.
  • end: Date
  • # A note about this entity.
  • note: NoteMutationInput
  • # A single file to associate with this object. Any existing file will be
  • # overwritten.
  • file: AssociateFileMutationInput
  • # Setting this value to `true` will set `start` to null.
  • unset_start: Boolean
  • # Setting this value to `true` will set `end` to null.
  • unset_end: Boolean
  • }

link Require by