OBJECT
Form
A single form's definition
link GraphQL Schema definition
- type Form {
- # Unique form ID.
- Int! :
- # The form's display name.
- String! :
- # Long description of the form.
- String :
- # Display metadata for the form's fields.
- UntypedValue :
- # List of emails to send the form results to on submission.
- String] : [
- # List of tags that are allowed to see the form.
- Tag] : [
- # True if submitted form results should be able to be edited.
- Boolean! :
- # True if the header client field is required in submitted form results.
- Boolean! :
- # True if the project client field is required in submitted form results.
- Boolean! :
- # True if the asset client field is required in submitted form results.
- Boolean! :
- # True if the worker client field is required in submitted form results.
- Boolean! :
- # True if the supplier client field is required in submitted form results.
- Boolean! :
- # True if the user's geolocation should be collected on form result submission.
- Boolean! :
- # When this form is attached to an order task, user will be required to fill it in
- # before they can submit a timesheet for their allocation.
- Boolean! :
- # True if the form is archived, and no longer active.
- Boolean! :
- # True if the form is logically deleted.
- Boolean! :
- # The date the form was last updated in UTC+0.
- DateTime :
- # The date the form was created in UTC+0.
- DateTime! :
- # The user that the form result will be assigned to on submission.
- User :
- # The default status to set the form result to on submission.
- FormStatus :
- # The printing template path. Null if no template has been uploaded.
- String @deprecated( reason: "Use the merge_template instead - this field will stop returning anything soon." ) :
- # The merge template information. Null if no template has been uploaded.
- MergeTemplate :
- # The position in form lists that the form will appear.
- Int :
- # True if there are results logged against this form. False otherwise.
- Boolean! :
- # Whether a form can be shared amongst users to complete.
- Boolean! :
- # The settings for displaying a form result
- FormDisplaySetting :
- }
link Require by
- FormDisplaySettingThe display settings for the form.
- FormResultA single submitted result for a form
- FormWebhookA webhook configuration for specific forms.
- OrderTaskA single order task
- OrderTemplateTaskA order task with template details and task timing conditions
- QueryRoot of the Assignar Core Query API
- TaskTask of the Assignar platform.