OBJECT

LeadOpptyStepCheckListRelationEntity

link GraphQL Schema definition

  • type LeadOpptyStepCheckListRelationEntity {
  • # 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
  • # Appointment used as evidence for this checklist item. Set when activity_id
  • # resolves to an Appointment; otherwise empty.
  • appointment: AppointmentEntity
  • # Task used as evidence for this checklist item. Set when activity_id resolves to
  • # a Task; otherwise empty.
  • task: TaskEntity
  • # Document linked as evidence for this checklist item.
  • cloudObject: CloudObjectEntity
  • # Email linked as evidence for this checklist item.
  • email: EmailEntity
  • # Lead this checklist completion belongs to. Set when lead_oppty_id resolves to a
  • # Lead; otherwise empty.
  • lead: LeadEntity
  • # Opportunity this checklist completion belongs to. Set when lead_oppty_id
  • # resolves to an Opportunity; otherwise empty.
  • oppty: OpportunityEntity
  • # Note linked as evidence for this checklist item.
  • note: NoteEntity
  • # Quote this checklist completion belongs to, or empty when it belongs to a lead
  • # or opportunity.
  • quote: QuoteEntity
  • # Step checklist item this completion record refers to.
  • stepChecklist: StepChecklistEntity
  • # Id of the appointment or task linked as evidence for this checklist item.
  • activityId: ID
  • # Id of the document.
  • cloudObjectId: ID
  • # Id of the email.
  • emailId: ID
  • # True when the checklist item has been completed for this lead, opportunity or
  • # quote.
  • itemChecked: Boolean
  • # Id of the lead or opportunity, or empty when this completion belongs to a quote.
  • leadOpptyId: ID
  • # Id of the note.
  • noteId: ID
  • # Id of the quote.
  • quoteId: ID
  • # Id of the step checklist item.
  • stepChecklistId: 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!]!
  • }