OBJECT

OnlineFormRelatedRecordSettings

link GraphQL Schema definition

  • type OnlineFormRelatedRecordSettings {
  • # Identifier of this related-record rule.
  • id: ID!
  • # Which related entity (via its relation) this rule links or creates records for
  • # when a response is submitted.
  • relation: ProcessRecordNodeRelationEnum!
  • # Id of the lookup field defining the relation, when the relation is reached
  • # through a specific lookup field.
  • relationLookupFieldId: String
  • # Record-creation form used to create the related record (for the link-or-create
  • # and update-or-create modes).
  • createForm: ProcessEntityTemplate
  • # Record-edit form used to update the matched related record (for the update and
  • # update-or-create modes).
  • updateForm: ProcessEntityTemplate
  • # Id of the form field whose value is matched against the related records to find
  • # the one to link.
  • linkFormFieldId: ID
  • # Id of the related-record field matched against the form-field value when finding
  • # the record to link.
  • linkRecordFieldId: ID
  • # If true, every matching related record is linked rather than only the first
  • # match.
  • linkAll: Boolean!
  • }