OBJECT
FormResult
A single submitted result for a form
link GraphQL Schema definition
- type FormResult {
- # The form which these results relate to.
- Form :
- # The user's location when they submitted the form
- Geolocation :
- # Client selected at the header level. Null if was turned off on the form.
- Client :
- # Project selected at the header level. Null if was turned off on the form.
- Project :
- # Asset selected at the header level. Null if was turned off on the form.
- Asset :
- # Worker selected at the header level. Null if was turned off on the form.
- User :
- # Supplier selected at the header level. Null if was turned off on the form.
- Supplier :
- # The user this form result is assigned to. Null if nobody assigned.
- User :
- # The order related to this form result.
- Order :
- # The order resource this form is related to (i.e. was created from an
- # allocation).
- Int :
- # The order resource date this form is related to (i.e. was created from an
- # allocation).
- Int :
- # The current status of this form result.
- FormStatus :
- # The list of results that were entered into the fields.
- UntypedValue :
- # Unique form result ID.
- Int! :
- # The user that created this form result.
- User :
- # The date the form result was created, GMT.
- DateTime! :
- # The date the form result was submitted, GMT.
- DateTime :
- # The user that last modified this form result.
- User :
- # The date the form result was modified, GMT.
- DateTime :
- # The previously merged documents.
- MergedDocument] : [
- # Assets that have been linked via a field in the result_data.
- Asset] : [
- # Users that have been linked via a field in the result_data.
- User] : [
- # Past versions of the shared form.
- FormResultPastVersion] : [
- # Form result lock that stops other people from editing the form result.
- FormResultLock :
- # Current version number.
- Int :
- # If the form is locked.
- Boolean :
- # Whether a form result is currently in progress (not submitted)
- Boolean :
- # The allocation the form result was linked to
- Allocation :
- # The settings for displaying a form result
- FormDisplaySetting :
- }