OBJECT

FormResultPastVersion

Past versions of a form result

link GraphQL Schema definition

  • type FormResultPastVersion {
  • # Asset for the form result past version.
  • asset: Asset
  • # The user that created this form result.
  • created_by: User
  • # The date the form result version was created in UTC+0.
  • created_time: DateTime!
  • # The list of results that were entered into the fields.
  • result_data: UntypedValue
  • # Form result id for the new version.
  • form_result: FormResult
  • # Unique order ID.
  • id: Int!
  • # The time this form result past version was last modified.
  • modified_time: DateTime
  • # Project for the form result past version.
  • project: Project
  • # Supplier for the form result past version.
  • supplier: Supplier
  • # number of the past version
  • version: Int
  • # Worker for the form result past version.
  • worker: User
  • }