INPUT_OBJECT

DigitalDocketCreate

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

link GraphQL Schema definition

  • input DigitalDocketCreate {
  • # Client selected at the header level. Null if was turned off on the docket
  • # template.
  • client: IdObject
  • # The template which these dockets have been generated by.
  • docket_template: IdObject
  • # Order the dd was created against, if it was created via an allocation.
  • order: IdObject
  • # Project selected at the header level. Null if was turned off on the docket
  • # template.
  • project: IdObject
  • # 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: GeolocationInput!
  • # Supervisor user selected at the header level. Null if was turned off on the
  • # docket template.
  • supervisor: IdObject
  • }