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.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Account the submission is linked to, when applicable.
  • account: AccountEntity
  • # Contact the submission is linked to, when applicable.
  • contact: ContactEntity
  • # Custom entity record the submission is linked to, when applicable.
  • customEntity: CustomEntityEntity
  • # Lead the submission is linked to. Set when lead_oppty_id resolves to a Lead.
  • lead: LeadEntity
  • # Opportunity the submission is linked to. Set when lead_oppty_id resolves to an
  • # Opportunity.
  • oppty: OpportunityEntity
  • # Online form submission being linked.
  • onlineForm: OnlineFormEntity
  • # Project the submission is linked to, when applicable.
  • project: ProjectEntity
  • # Quote the submission is linked to, when applicable.
  • quote: QuoteEntity
  • # Id of the linked account.
  • accountId: ID
  • # Id of the linked contact.
  • contactId: ID
  • # Id of the linked custom entity record.
  • customEntityId: 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.
  • isPrimary: Boolean!
  • # Id of the linked lead or opportunity, or empty when not linked.
  • leadOpptyId: ID
  • # Id of the submission.
  • onlineFormId: ID!
  • # Id of the linked project.
  • projectId: ID
  • # Id of the linked quote.
  • quoteId: ID
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }