INPUT_OBJECT

DigitalDocketTemplateUpdate

A digital docket template. Essentially a form template used to generate digital dockets

link GraphQL Schema definition

  • input DigitalDocketTemplateUpdate {
  • # The digital docket description (max 500 characters).
  • description: String
  • # The display metadata for the digital docket form.
  • display_meta: FormTemplateDisplayMeta
  • # The unique digital docket template ID.
  • id: Int
  • # True if the template is logically deleted.
  • # This will hide the template from dashboard and the mobile app.
  • is_archived: Boolean
  • # Whether the digital docket template is published.
  • is_published: Boolean
  • # The merge template information.
  • merge_template: FileUploadInput
  • # True if the header client field is required in digital dockets generated by this
  • # template.
  • require_client: Boolean
  • # True if the project client field is required in digital dockets generated by
  • # this template.
  • # Note that you cannot have a project without a client.
  • require_project: Boolean
  • # True if the task field is required in digital dockets generated by this
  • # template.
  • require_task: Boolean
  • # True if the supervisor field is required in digital dockets generated by this
  • # template.
  • require_supervisor: Boolean
  • # True if the asset field is required in digital dockets generated by this
  • # template.
  • require_worker_asset: Boolean
  • # True if the break time field is required in digital dockets generated by this
  • # template.
  • require_worker_break_time: Boolean
  • # If this is set, it will dictate the position in lists that the template will
  • # appear.
  • sort_order: Int
  • # The digital docket's display title (max 150 characters).
  • title: String
  • # List of tags that are allowed to see the template.
  • user_tags_permission: [IdObject]
  • }