OBJECT

DigitalDocket

A digital docket. Essentially a form result with data submitted with a timesheet

link GraphQL Schema definition

  • type DigitalDocket {
  • # Client selected at the header level. Null if was turned off on the docket
  • # template.
  • client: Client
  • # The user that filled this docket.
  • created_by: User
  • # The date the docket result was created, GMT.
  • created_time: DateTime!
  • # The template which these dockets have been generated by.
  • docket_template: DigitalDocketTemplate!
  • # Unique digital docket ID.
  • id: Int!
  • # The previously merged documents.
  • merged_documents: [MergedDocument]
  • # The user that last modified this docket.
  • modified_by: User
  • # The date the docket result was modified, GMT.
  • modified_time: DateTime
  • # Order the dd was created against, if it was created via an allocation.
  • order: Order
  • # Project selected at the header level. Null if was turned off on the docket
  • # template.
  • project: Project
  • # The list of results that were entered into the fields.
  • result_data: FormResultData
  • # The URL of the signature image.
  • signature_image: NonEmptyString
  • # The name of the person that signed the docket.
  • signature_name: NonEmptyString
  • # The user's location when they submitted the docket
  • submit_location: Geolocation
  • # Supervisor user selected at the header level. Null if was turned off on the
  • # docket template.
  • supervisor: User
  • # The workers on the docket.
  • workers: [DigitalDocketWorker]
  • }