TaskEventGql
A live task change: the created/updated/deleted task plus whether it matches the subscription's filters
type TaskEventGql {
kind: String!
matches: Boolean!
task: WorkflowTask!
}
Fields
TaskEventGql.kind ● String! non-null scalar
TaskEventGql.matches ● Boolean! non-null scalar
Whether the task matches the subscription's filters. Always true for Created (non-matching creates are not sent); false for Deleted. For Updated it tells the client whether to upsert (true) or drop (false) the task.
TaskEventGql.task ● WorkflowTask! non-null object
Member Of
TaskSubscriptions object