OBJECT
OnlineFormRelationEntity
link GraphQL Schema definition
- type OnlineFormRelationEntity {
- # 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!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Account the submission is linked to, when applicable.
- : AccountEntity
- # Contact the submission is linked to, when applicable.
- : ContactEntity
- # Custom entity record the submission is linked to, when applicable.
- : CustomEntityEntity
- # Lead the submission is linked to. Set when lead_oppty_id resolves to a Lead.
- : LeadEntity
- # Opportunity the submission is linked to. Set when lead_oppty_id resolves to an
- # Opportunity.
- : OpportunityEntity
- # Online form submission being linked.
- : OnlineFormEntity
- # Project the submission is linked to, when applicable.
- : ProjectEntity
- # Quote the submission is linked to, when applicable.
- : QuoteEntity
- # Id of the linked account.
- : ID
- # Id of the linked contact.
- : ID
- # Id of the linked custom entity record.
- : ID
- # True for the row that points to the submission's primary record. There is at
- # most one primary relation per submission and its entity must match the form's
- # entity_type.
- : Boolean!
- # Id of the linked lead or opportunity, or empty when not linked.
- : ID
- # Id of the submission.
- : ID!
- # Id of the linked project.
- : ID
- # Id of the linked quote.
- : ID
- # Revision when entity was lastly changed.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }