OBJECT

ContactAccountRelationEntity

link GraphQL Schema definition

  • type ContactAccountRelationEntity {
  • # 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 contact is linked to.
  • account: AccountEntity
  • # Contact linked to the account.
  • contact: ContactEntity
  • # Id of the account.
  • accountId: ID!
  • # Free-form note describing this contact-account link.
  • comment: String
  • # Id of the contact.
  • contactId: ID!
  • # True when the contact acts as an assistant on the account org chart. Assistant
  • # relations cannot have child relations.
  • isAssistant: Boolean
  • # True for the row that represents the primary related entity for this record.
  • # Setting is_primary to true on a row automatically clears it on any other primary
  • # row.
  • isPrimary: Boolean!
  • # True when the contact is a sibling node on the account org chart (no
  • # parent/child reporting line).
  • isSibling: Boolean
  • # Job title or position the contact holds at the account.
  • position: String
  • # Org-chart relationship of the contact within the account hierarchy.
  • relationship: OrgRelationshipTypeEnum
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Roles the contact holds within the linked account.
  • accountRoles: [ContactAccountAccountRoleRelationEntity!]
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }