OBJECT
TaskEntity
link GraphQL Schema definition
- type TaskEntity {
- # Arguments
- # apiNames: Api names of custom fields to retrieve. All are
- # returned if not set.
- (: [String!]): JSONString!
- # Deferred property. Will return data only if called via get_by_id. Otherwise null
- # or empty array is used.
- : Int
- # 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!
- # Timestamp of the next pending reminder configured for the activity (reminder
- # time, due date or end date as applicable). Empty when no reminder is pending.
- : String
- # Id of the linked Media record holding the activity's call recording /
- # transcription, when available.
- : UUID
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Task type that classifies this task (e.g. Task, Call, Email). Drives form layout
- # and icon.
- : TaskTypeEntity
- # Call record associated with this task when the task represents a phone call.
- : CallEntity
- # Configurable outcome of the call (e.g. Reached, Voicemail, No Answer).
- : DataEntity
- # Currency exchange rate list used to convert monetary fields linked to this task.
- # Empty to inherit the team space default.
- : CurrencyExchangeRatesListEntity
- # Sales user who owns this task. May be empty when the task is unassigned and
- # available for take-over.
- : ClientEntity
- # Sales unit this task is assigned to. Determines which team members can see the
- # record under unit-based sharing.
- : SalesUnitEntity
- # Id of the task type.
- : ID
- # Duration of the recorded call. Set automatically when the task is linked to a
- # call log.
- : Int
- # Id of the linked call record.
- : ID
- # Id of the call outcome value.
- : ID
- # Id of the currency exchange rate list applied to this task.
- : ID
- # Free-form description of what the task entails.
- : String
- # Date by which the task is expected to be completed.
- : Date
- # Estimated duration of the task. Stored as a duration value (days/hours/minutes).
- : Float
- # Id of the task owner.
- : ID
- # Priority level of the task (e.g. Low, Normal, High, Urgent).
- : PriorityEnum
- # Sharing model applied on top of the owner/unit visibility (e.g. shared with
- # selected sales units or selected users).
- : ShareModeEnum
- # Date when work on the task is scheduled to begin.
- : Date
- # Current status of the task (NotStarted, InProgress, Completed, Deferred).
- # Toggling to Completed marks any linked checklist items as done.
- : TaskStatusEnum
- # Short summary line shown in lists and notifications.
- : String!
- # Discriminator identifying the concrete record type — always "task" for Task
- # records. Read-only; useful when consuming polymorphic Activity results.
- : String!
- # Id of the sales unit.
- : ID
- # Revision when entity was lastly changed.
- : Int
- # Sales units that have been granted shared access to this task. Editable only
- # when share_mode allows unit sharing.
- #
- # Arguments
- # filter: Filter SalesUnit relations by target SalesUnit
- # attributes.
- # filterEdge: Filter TaskSharingSalesUnitRelation relations by
- # edge (relation) TaskSharingSalesUnitRelation attributes.
- # orderBy: Order SalesUnit relations by target SalesUnit
- # 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.
- (
- : SalesUnitFilterInput,
- : TaskSharingSalesUnitRelationFilterInput,
- : [SalesUnitOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): TaskSharingSalesUnitRelationEntityConnection
- # Users that have been granted shared access to this task. Editable only when
- # share_mode allows user sharing.
- #
- # Arguments
- # filter: Filter Client relations by target Client attributes.
- # filterEdge: Filter TaskSharingClientRelation relations by edge
- # (relation) TaskSharingClientRelation attributes.
- # orderBy: Order Client relations by target Client 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.
- (
- : ClientFilterInput,
- : TaskSharingClientRelationFilterInput,
- : [ClientOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): TaskSharingClientRelationEntityConnection
- # Accounts this task is linked to.
- #
- # Arguments
- # filter: Filter Account relations by target Account attributes.
- # filterEdge: Filter ActivityRelation relations by edge
- # (relation) ActivityRelation attributes.
- # orderBy: Order Account relations by target Account 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.
- (
- : AccountFilterInput,
- : ActivityRelationFilterInput,
- : [AccountOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): ActivityRelationEntityConnection
- # Contacts this task is linked to.
- #
- # Arguments
- # filter: Filter Contact relations by target Contact attributes.
- # filterEdge: Filter ActivityRelation relations by edge
- # (relation) ActivityRelation attributes.
- # orderBy: Order Contact relations by target Contact 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.
- (
- : ContactFilterInput,
- : ActivityRelationFilterInput,
- : [ContactOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): ActivityRelationEntityConnection
- # Leads this task is linked to.
- #
- # Arguments
- # filter: Filter Lead relations by target Lead attributes.
- # filterEdge: Filter ActivityRelation relations by edge
- # (relation) ActivityRelation attributes.
- # orderBy: Order Lead relations by target Lead 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.
- (
- : LeadFilterInput,
- : ActivityRelationFilterInput,
- : [LeadOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): ActivityRelationEntityConnection
- # Opportunities this task is linked to.
- #
- # Arguments
- # filter: Filter Opportunity relations by target Opportunity
- # attributes.
- # filterEdge: Filter ActivityRelation relations by edge
- # (relation) ActivityRelation attributes.
- # orderBy: Order Opportunity relations by target Opportunity
- # 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.
- (
- : OpportunityFilterInput,
- : ActivityRelationFilterInput,
- : [OpportunityOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): ActivityRelationEntityConnection
- # Projects this task is linked to, including the per-objective ordering.
- #
- # Arguments
- # filter: Filter Project relations by target Project attributes.
- # filterEdge: Filter ActivityRelation relations by edge
- # (relation) ActivityRelation attributes.
- # orderBy: Order Project relations by target Project 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.
- (
- : ProjectFilterInput,
- : ActivityRelationFilterInput,
- : [ProjectOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): ActivityRelationEntityConnection
- # Quotes this task is linked to.
- #
- # Arguments
- # filter: Filter Quote relations by target Quote attributes.
- # filterEdge: Filter ActivityRelation relations by edge
- # (relation) ActivityRelation attributes.
- # orderBy: Order Quote relations by target Quote 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.
- (
- : QuoteFilterInput,
- : ActivityRelationFilterInput,
- : [QuoteOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): ActivityRelationEntityConnection
- # Custom entity records this task is linked to.
- #
- # Arguments
- # filter: Filter CustomEntity relations by target CustomEntity
- # attributes.
- # filterEdge: Filter ActivityRelation relations by edge
- # (relation) ActivityRelation attributes.
- # orderBy: Order CustomEntity relations by target CustomEntity
- # 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.
- (
- : CustomEntityFilterInput,
- : ActivityRelationFilterInput,
- : [CustomEntityOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): ActivityRelationEntityConnection
- # External identifier of the record in the linked third-party service (e.g.
- # Google, Microsoft 365, Exchange). Maintained by the sync engine.
- : String
- # External identifier of the record in the linked third-party service (e.g.
- # Google, Microsoft 365, Exchange). Maintained by the sync engine.
- : String
- # External identifier of the record in the linked third-party service (e.g.
- # Google, Microsoft 365, Exchange). Maintained by the sync engine.
- : String
- : TaskReminderEntity
- : TaskRecurrenceEntity
- # Documents linked to this task.
- #
- # Arguments
- # filter: Filter CloudObject relations by target CloudObject
- # attributes.
- # filterEdge: Filter CloudObjectRelation relations by edge
- # (relation) CloudObjectRelation attributes.
- # orderBy: Order CloudObject relations by target CloudObject
- # 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.
- (
- : CloudObjectFilterInput,
- : CloudObjectRelationFilterInput,
- : [CloudObjectOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): CloudObjectRelationEntityConnection
- # Comments authored on this task.
- #
- # Arguments
- # filter: Filter ActivityComment relations by target
- # ActivityComment attributes.
- # orderBy: Order ActivityComment relations by target
- # ActivityComment 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.
- (
- : ActivityCommentFilterInput,
- : [ActivityCommentOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): ActivityCommentEntityConnection
- # Tag labels applied to this task.
- #
- # Arguments
- # filter: Filter Tag relations by target Tag attributes.
- # filterEdge: Filter TagRelation relations by edge (relation)
- # TagRelation attributes.
- # orderBy: Order Tag relations by target Tag 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.
- (
- : TagFilterInput,
- : TagRelationFilterInput,
- : [TagOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): TagRelationEntityConnection
- # Display name of the task (alias of subject).
- : String!
- # Deferred property. Will return data only if called via get_by_id. Otherwise null
- # or empty array is used.
- : [UUID!]!
- # Timestamp of the most recent modification made by an end user (excluding system
- # changes). Read-only; computed by Coevera.
- : DateTime
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- # Arguments
- # entityType: [Not documented]
- (: EntityNameEnum!): CompactViewDrilldownModel!
- # Arguments
- # ids: [Not documented]
- (: [UUID!]!): [DashboardChartData!]
- # Arguments
- # id: [Not documented]
- # seriesIndex: [Not documented]
- # itemIndex: [Not documented]
- (: UUID!, : Int, : Int): CompactViewDrilldownModel!
- # Arguments
- # ids: Null to load all fields defined on InterfacePreview entity
- # first: [Not documented]
- (: [UUID!], : Int): [InterfaceFieldData]!
- : MediaEntity
- }
link Require by
- ActivityCommentEntitynull
- ActivityDataExRelationEntitynull
- ActivityKPIEntitynull
- ActivityRelationEntitynull
- CallEntitynull
- ChangeOwnershipTaskPayloadnull
- ClientFavoriteEntitynull
- ClientStoryReadEntitynull
- CloudObjectRelationEntitynull
- ConvertTaskPayloadnull
- CreateTaskPayloadnull
- CustomEntityRelationDataEntitynull
- DashboardListChartDataEntitynull
- DeleteTaskPayloadnull
- LeadOpptyStepCheckListRelationEntitynull
- ManageSharingTaskPayloadnull
- MediaEntitynull
- ReleaseOwnershipTaskPayloadnull
- RemoveReminderTaskPayloadnull
- RestoreTaskPayloadnull
- SetReminderTaskPayloadnull
- SetTaskStatusPayloadnull
- TagRelationEntitynull
- TaskAutoPrefillnull
- TaskEntityEdgeA Relay edge containing a `TaskEntity` and its cursor.
- TaskRecurrenceEntitynull
- TaskReminderEntitynull
- TaskRepositorynull
- TaskSharingClientRelationEntitynull
- TaskSharingSalesUnitRelationEntitynull
- UpdateTaskPayloadnull