OBJECT

JournalEntryCreated

A created journal entry

link GraphQL Schema definition

  • type JournalEntryCreated {
  • # ID is username-date_added
  • id: String
  • # Customer id journal is owned by
  • customer_id: String
  • # Date journal created
  • date_added: Int
  • # First and last name of journal creator
  • actioned_by: String
  • # Username of journal creator
  • username: String
  • # Comment (text) content of journal entry
  • comment: String
  • # Attachment (e.g. image) of journal entry
  • attachment: String
  • # Module which journal was created for
  • module_name: String
  • # The journal entry can be shown in the fieldworker app.
  • show_in_fieldworker_app: Boolean
  • }