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 :
- # The user that filled this docket.
- User :
- # The date the docket result was created, GMT.
- DateTime! :
- # The template which these dockets have been generated by.
- DigitalDocketTemplate! :
- # Unique digital docket ID.
- Int! :
- # The previously merged documents.
- MergedDocument] : [
- # The user that last modified this docket.
- User :
- # The date the docket result was modified, GMT.
- DateTime :
- # Order the dd was created against, if it was created via an allocation.
- Order :
- # Project selected at the header level. Null if was turned off on the docket
- # template.
- Project :
- # The list of results that were entered into the fields.
- FormResultData :
- # The URL of the signature image.
- NonEmptyString :
- # The name of the person that signed the docket.
- NonEmptyString :
- # The user's location when they submitted the docket
- Geolocation :
- # Supervisor user selected at the header level. Null if was turned off on the
- # docket template.
- User :
- # The workers on the docket.
- DigitalDocketWorker] : [
- }