INPUT_OBJECT

NoteInput

An input data structure to create a note associated with a customer

link GraphQL Schema definition

  • input NoteInput {
  • # Whether this note is a checkable task (default: false)
  • checkable: Boolean
  • # Optional manager/subuser ID to assign this note to
  • managerId: ID
  • # Optional date for the note (e.g., for follow-up tasks), format: YYYY-MM-DD
  • nextDate: Date
  • # The text content of the note (required, max 2000 characters)
  • text: String!
  • }