OBJECT

CloudObjectRelationEntity

link GraphQL Schema definition

  • type CloudObjectRelationEntity {
  • # 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: AccountEntity
  • appointment: AppointmentEntity
  • task: TaskEntity
  • approvalProcess: ApprovalProcessEntity
  • cloudObjectFolder: CloudObjectFolderEntity
  • cloudObject: CloudObjectEntity
  • contact: ContactEntity
  • customEntity: CustomEntityEntity
  • emailSequence: EmailSequenceEntity
  • emailTemplate: EmailTemplateEntity
  • lead: LeadEntity
  • oppty: OpportunityEntity
  • email: EmailEntity
  • memo: MemoEntity
  • process: ProcessEntity
  • processTemplate: ProcessTemplateEntity
  • project: ProjectEntity
  • quote: QuoteEntity
  • reportSchedule: ReportScheduleEntity
  • # Relation to single entity instance.
  • accountId: ID
  • # Relation to single abstract entity instance.
  • #
  • # E.g. Relation to Lead/Oppty
  • #
  • activityId: ID
  • # Relation to single entity instance.
  • approvalProcessId: ID
  • # Relation to single entity instance.
  • cloudObjectFolderId: ID
  • # Relation to single entity instance.
  • cloudObjectId: ID
  • # Relation to single entity instance.
  • contactId: ID
  • # Relation to single entity instance.
  • customEntityId: ID
  • # Relation to single entity instance.
  • emailSequenceId: ID
  • # Relation to single entity instance.
  • emailTemplateId: ID
  • # Relation to single abstract entity instance.
  • #
  • # E.g. Relation to Lead/Oppty
  • #
  • leadOpptyId: ID
  • # Relation to single abstract entity instance.
  • #
  • # E.g. Relation to Lead/Oppty
  • #
  • messageId: ID
  • # Relation to single entity instance.
  • processId: ID
  • # Relation to single entity instance.
  • processTemplateId: ID
  • # Relation to single entity instance.
  • projectId: ID
  • # Relation to single entity instance.
  • quoteId: ID
  • # Relation to single entity instance.
  • reportScheduleId: 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!]!
  • }