OBJECT
StepChecklistEntity
link GraphQL Schema definition
- type StepChecklistEntity {
- # 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.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Appointment type that satisfies this checklist item. Set when activity_type_id
- # resolves to an AppointmentType.
- : AppointmentTypeEntity
- # Task type that satisfies this checklist item. Set when activity_type_id resolves
- # to a TaskType.
- : TaskTypeEntity
- # Cloud object template that the checklist item should fill and attach to the
- # record.
- : CloudObjectTemplateEntity
- # Email sequence the item should enroll the record into.
- : EmailSequenceEntity
- # Field whose value satisfies this checklist item. Set when item_type is
- # FieldType.
- : FieldEntity
- # Process the item should run. Set when item_type is ProcessType.
- : ProcessEntity
- # Field that supplies the recipient email address when the checklist item triggers
- # sending an email.
- : FieldEntity
- # Email template used when the checklist item triggers sending an email.
- : EmailTemplateEntity
- # Pipeline or process step this checklist item belongs to.
- : StepEntity
- # Id of the appointment or task type that satisfies the checklist item, or empty
- # when the item is not activity-based.
- : ID
- # Field whose values are strictly defined with an enumeration of values.
- : StepChecklistDocumentFormatEnum
- # Id of the cloud object template.
- : ID
- # Free-text description shown alongside the checklist item.
- : String
- # Id of the email sequence.
- : ID
- # Id of the related field.
- : ID
- # Field whose values are strictly defined with an enumeration of values.
- : StepChecklistTypeEnum
- # Field whose values are strictly defined with an enumeration of values.
- : StepChecklistValidationEnum
- # Display label of the checklist item.
- : String
- # When true, label is treated as a translation key and localized in the UI;
- # otherwise the literal text is shown.
- : Boolean
- # Id of the related process.
- : ID
- # Id of the recipient field.
- : ID
- # Id of the email template.
- : ID
- # Position of the checklist item within its step; lower values appear first.
- : Int!
- # Id of the step.
- : ID!
- # Filter expression that controls when the checklist item is shown. The item is
- # visible only when the record matches this filter; defaults to a no-op filter
- # matching all records.
- : StepChecklistVisibilityFilter!
- # Field whose values are strictly defined with an enumeration of values.
- : StepChecklistVisibilityEnum
- # Revision when entity was lastly changed.
- : Int
- # Sales roles the checklist item is shown to. Empty means the item is shown to all
- # roles.
- #
- # Arguments
- # filter: Filter SalesRole relations by target SalesRole
- # attributes.
- # filterEdge: Filter StepChecklistSalesRoleRelation relations by
- # edge (relation) StepChecklistSalesRoleRelation attributes.
- # orderBy: Order SalesRole relations by target SalesRole
- # attributes.
- # includeDeleted: Returns deleted target records as well. Default
- # is true.
- # before: Cursor until which to take entities to result set.
- # after: Cursor after which to start taking entities to result
- # set.
- # first: Number of entities to return from beginning of the
- # result set.
- # last: Return only the "last" number of entities from result
- # set.
- (
- : SalesRoleFilterInput,
- : StepChecklistSalesRoleRelationFilterInput,
- : [SalesRoleOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): StepChecklistSalesRoleRelationEntityConnection
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }