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 the file is attached to, or empty when not attached to an account.
  • account: AccountEntity
  • # Appointment the file is attached to. Set when activity_id resolves to an
  • # Appointment.
  • appointment: AppointmentEntity
  • # Task the file is attached to. Set when activity_id resolves to a Task.
  • task: TaskEntity
  • # Approval process the file is attached to.
  • approvalProcess: ApprovalProcessEntity
  • # Call the file is attached to (e.g. a call recording).
  • call: CallEntity
  • # Folder the file is filed under within the parent record, or empty when stored at
  • # the record root.
  • cloudObjectFolder: CloudObjectFolderEntity
  • # Cloud object (file) being linked.
  • cloudObject: CloudObjectEntity
  • # Contact the file is attached to, or empty when not attached to a contact.
  • contact: ContactEntity
  • # Custom entity record the file is attached to.
  • customEntity: CustomEntityEntity
  • # Email sequence the file is attached to.
  • emailSequence: EmailSequenceEntity
  • # Email template the file is attached to as a template attachment.
  • emailTemplate: EmailTemplateEntity
  • # Field mapping the file is attached to (e.g. an import file).
  • fieldMapping: FieldMappingEntity
  • # Lead the file is attached to. Set when lead_oppty_id resolves to a Lead.
  • lead: LeadEntity
  • # Opportunity the file is attached to. Set when lead_oppty_id resolves to an
  • # Opportunity.
  • oppty: OpportunityEntity
  • # Media record the file is attached to.
  • media: MediaEntity
  • # Email the file is attached to (e.g. an email attachment). Set when message_id
  • # resolves to an Email.
  • email: EmailEntity
  • # Memo the file is attached to. Set when message_id resolves to a Memo.
  • memo: MemoEntity
  • # Online form field the file was uploaded into.
  • onlineFormField: FieldEntity
  • # Online form submission the file was uploaded with.
  • onlineForm: OnlineFormEntity
  • # Sales process the file is attached to.
  • process: ProcessEntity
  • # Sales process template the file is attached to.
  • processTemplate: ProcessTemplateEntity
  • # Project the file is attached to.
  • project: ProjectEntity
  • # Quote the file is attached to.
  • quote: QuoteEntity
  • # Report schedule the file is attached to (e.g. an exported report).
  • reportSchedule: ReportScheduleEntity
  • # Text message (SMS/MMS) the file is attached to.
  • textMessage: TextMessageEntity
  • # Id of the linked account.
  • accountId: ID
  • # Id of the linked appointment or task, or empty when not linked.
  • activityId: ID
  • # Id of the linked approval process.
  • approvalProcessId: ID
  • # Id of the linked call.
  • callId: ID
  • # Id of the folder within the parent record, or empty when stored at the record
  • # root.
  • cloudObjectFolderId: ID
  • # Id of the linked file.
  • cloudObjectId: ID
  • # Id of the linked contact.
  • contactId: ID
  • # Id of the linked custom entity record.
  • customEntityId: ID
  • # Id of the linked email sequence.
  • emailSequenceId: ID
  • # Id of the linked email template.
  • emailTemplateId: ID
  • # Id of the linked field mapping.
  • fieldMappingId: ID
  • # Id of the linked lead or opportunity, or empty when not linked.
  • leadOpptyId: ID
  • # Id of the linked media record.
  • mediaId: ID
  • # Id of the linked email or memo, or empty when not linked.
  • messageId: ID
  • # Id of the online form field the file was uploaded into.
  • onlineFormFieldId: ID
  • # Id of the linked online form submission.
  • onlineFormId: ID
  • # Id of the linked sales process.
  • processId: ID
  • # Id of the linked sales process template.
  • processTemplateId: ID
  • # Id of the linked project.
  • projectId: ID
  • # Id of the linked quote.
  • quoteId: ID
  • # Id of the linked report schedule.
  • reportScheduleId: ID
  • # Id of the linked text message.
  • textMessageId: 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!]!
  • }