OBJECT
OnlineFormTypeEntity
link GraphQL Schema definition
- type OnlineFormTypeEntity {
- : Boolean
- # Tells if the entity instance is protected against delete (Entities that need to
- # be present in the system at any time). Delete action still may fail if entity is
- # deletable, due some other additional validations.
- : Boolean!
- : OnlineForm
- # Returns if user can change readonly flag on this entity_type.
- : Boolean
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # User who owns the online form.
- : ClientEntity
- # Visual style applied to the form when rendered.
- : OnlineFormStyleEntity
- # When true, the embedded form JavaScript pre-fills fields from URL query
- # parameters on load.
- : Boolean
- # Free-text description shown alongside the form definition in the UI.
- : String
- # API name of the custom entity the form targets. Set only when entity_type is
- # CustomEntity; otherwise empty.
- : String
- # Field whose values are strictly defined with an enumeration of values.
- : BaseEntityTypeEnum!
- # JSON definition of the form layout (fields, sections, settings) shown to
- # respondents.
- : JSONString!
- # When true, the form is published and accepts new submissions; when false, the
- # form returns an error to respondents.
- : Boolean!
- # True when the form is system-managed and its schema cannot be edited by users.
- : Boolean!
- # Timestamp of the most recent change to form_edit (form schema).
- : DateTime
- # Timestamp of the most recent change to is_enabled.
- : DateTime
- # Name of the entity and its default text representation.
- : String!
- # Tracks which threshold-reached notifications have already been sent for the
- # current form configuration. Reset when the configuration changes.
- : JSONString
- # Id of the owning user.
- : ID!
- # Id of the form style.
- : ID!
- # Revision when entity was lastly changed.
- : Int
- # Minimum response count required for the form to be considered "responsive" in
- # reports and notifications. Empty when no threshold is configured.
- : Int
- # Total number of times the form link has been delivered to recipients.
- : Int
- # Number of distinct recipients the form link has been delivered to.
- : Int
- # Total number of submissions (responses) recorded for the form.
- : Int
- # Fraction (0–1) of unique recipients who submitted a response.
- : Float
- # Timestamp of the most recent submission. Empty when the form has no responses.
- : DateTime
- # Name or email address of the respondent on the most recent submission. Empty
- # when the form has no responses or the respondent could not be identified.
- : String
- # Submissions (one per response) recorded for this form.
- #
- # Arguments
- # filter: Filter OnlineForm relations by target OnlineForm
- # attributes.
- # orderBy: Order OnlineForm relations by target OnlineForm
- # attributes.
- # includeDeleted: Returns deleted target records as well. Default
- # is true.
- # before: Cursor until which to take entities to result set.
- # after: Cursor after which to start taking entities to result
- # set.
- # first: Number of entities to return from beginning of the
- # result set.
- # last: Return only the "last" number of entities from result
- # set.
- (
- : OnlineFormFilterInput,
- : [OnlineFormOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): OnlineFormEntityConnection
- # Short identifier used in the public form URL (see link). Stable across the
- # lifetime of the form.
- : String!
- # Sum of response values used to evaluate the response acceptance threshold (e.g.
- # total responses, or evaluated value of the custom acceptance condition). Empty
- # when no threshold is configured.
- : Int
- # Public URL for accessing the form (suitable for sharing with respondents).
- : String
- # Overall state of the form: Inactive while it has no active configuration, Active
- # while accepting responses, Completed once the configured end condition is met.
- : ProcessStatusEnum
- # True when the form is configured with custom reCAPTCHA credentials; false when
- # using the platform default reCAPTCHA setup.
- : Boolean!
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- : [ID!]!
- # Arguments
- # category: [Not documented]
- # sortBy: [Not documented]
- # sortOrder: [Not documented]
- # before: [Not documented]
- # after: [Not documented]
- # first: [Not documented]
- # last: [Not documented]
- (
- : ResponseSummaryRelationCategory!,
- : OnlineFormTypeDetailGridSortBy,
- : SortOrder,
- : String,
- : String,
- : Int,
- : Int
- ): OnlineFormResponseSummaryItemConnection
- # Arguments
- # filter: [Not documented]
- # sortBy: [Not documented]
- # sortByFieldId: [Not documented]
- # sortOrder: [Not documented]
- # before: [Not documented]
- # after: [Not documented]
- # first: [Not documented]
- # last: [Not documented]
- (
- : FieldFilterParams,
- : OnlineFormTypeDetailResponseGridSortBy,
- : ID,
- : SortOrder,
- : String,
- : String,
- : Int,
- : Int
- ): OnlineFormResponseItemConnection
- # Arguments
- # filter: [Not documented]
- # fieldIds: [Not documented]
- (: OnlineFormFilterInput, : [UUID!]): OnlineFormUploadedFiles!
- }