OBJECT

JournalEntryMutation

Mutations that act on journal entries.

link GraphQL Schema definition

  • type JournalEntryMutation {
  • # creates a journal entry for an order.
  • #
  • # Arguments
  • # journal: The data to create journal entries.
  • createOrderJournal(journal: JournalEntry!): JournalEntryCreated
  • # Create a presigned url that users can upload journal attachments directly to.
  • #
  • # Arguments
  • # filename: The name of the journal attachment to create a
  • # presigned url.
  • createJournalSignedUrl(filename: String!): SignedUrl
  • }