Summary
Search Tasks
Description
Search Tasks with Options
Route
POST /workflow_engine/tasks/search
Roles
Parameters
Name | Type | Required | Description |
---|---|---|---|
filter | object | yes | Search Filter |
options | object | yes | expand, fields, query, local, limit, skip, sort |
{ "filter": { "someFieldName": "Some Value to query the against the someFieldName property" }, "options": { "expand": [ "owner" ], "fields": { "name": 1 }, "query": { "name": "abcd" }, "limit": 50, "local": false, "skip": 0, "sort": { "name": -1 } } }
{ "type": "object", "properties": { "filter": { "$ref": "wfEngineCommon#/definitions/queryObjectFieldNames" }, "options": { "$ref": "wfEngineCommon#/definitions/expandedSearchOptions" } }, "required": [ "filter", "options" ], "additionalProperties": false }
Return
Name | Type | Description |
---|---|---|
tasks | object | Search Results |
{ "results": [ { "_id": "4321abcdef694aa79dae47ad", "job": { "_id": "4321abcdef694aa79dae47ad", "task": "cd34", "ancestors": [ "4321abcdef694aa79dae47ad", "4321abcdef694aa79dae47ad" ], "name": "proident id", "description": true }, "variables": { "incoming": { "inputVariable": "inputValue" }, "outgoing": { "outputVariable": null }, "error": "", "decorators": [ { "type": "encryption", "pointer": "in consectetur" }, { "type": "encryption", "pointer": "minim" }, { "type": "encryption", "pointer": "magna" }, { "type": "encryption", "pointer": "sint aute irure consequat" }, { "type": "encryption", "pointer": "quis tempor ut" } ] }, "metrics": { "retrying": false }, "name": -72550030, "summary": true, "displayName": false, "type": true, "x": 1530181.1153835207, "y": 44566279.66490024 }, { "_id": "4321abcdef694aa79dae47ad", "job": { "_id": "5cb7b531d06cceb89fd21b1c", "task": "12ab", "ancestors": [ "5cb7b531d06cceb89fd21b1c", "4321abcdef694aa79dae47ad" ], "name": "id in in labore ut", "description": false }, "variables": { "incoming": { "inputVariable": "inputValue" }, "outgoing": { "outputVariable": null }, "error": "", "decorators": [ { "type": "encryption", "pointer": "labore esse eu nulla" }, { "type": "encryption", "pointer": "et dolore incididunt Lorem" } ] }, "metrics": { "retrying": false }, "name": 90646616, "summary": 74802652.71666741, "displayName": -96286687.54436229, "type": 11597352.261356786, "x": false, "y": true }, { "_id": "5cb7b531d06cceb89fd21b1c", "job": { "_id": "5cb7b531d06cceb89fd21b1c", "task": "cd34", "ancestors": [ "5cb7b531d06cceb89fd21b1c" ], "name": "cupidatat", "description": -82994051.77398312 }, "variables": { "incoming": { "inputVariable": "inputValue" }, "outgoing": { "outputVariable": null }, "error": "", "decorators": [ { "type": "encryption", "pointer": "in ut fugiat Duis ut" }, { "type": "encryption", "pointer": "id fugiat dolore officia anim" }, { "type": "encryption", "pointer": "velit" }, { "type": "encryption", "pointer": "in enim esse aliquip" }, { "type": "encryption", "pointer": "velit exercitation pariatur" } ] }, "metrics": { "retrying": false }, "name": -14955219.400192335, "summary": false, "displayName": "veniam et aliquip occaecat", "type": 64807470, "x": true, "y": -52686628 }, { "_id": "5cb7b531d06cceb89fd21b1c", "job": { "_id": "4321abcdef694aa79dae47ad", "task": "cd34", "ancestors": [ "4321abcdef694aa79dae47ad", "4321abcdef694aa79dae47ad", "5cb7b531d06cceb89fd21b1c" ], "name": false, "description": 26329397 }, "variables": { "incoming": { "inputVariable": "inputValue" }, "outgoing": { "outputVariable": null }, "error": "", "decorators": [ { "type": "encryption", "pointer": "non adipisicing" }, { "type": "encryption", "pointer": "aliqua deserunt fugiat quis" }, { "type": "encryption", "pointer": "non proident fugiat" }, { "type": "encryption", "pointer": "Ut aute veniam sint" }, { "type": "encryption", "pointer": "proident elit et consequat laboris" } ] }, "metrics": { "retrying": false }, "name": 90564927, "summary": -29286189, "displayName": 12761888, "type": "dolore ipsum fugiat labore sed", "x": 89345374.98507798, "y": -57235816.07905013 }, { "_id": "5cb7b531d06cceb89fd21b1c", "job": { "_id": "5cb7b531d06cceb89fd21b1c", "task": "cd34", "ancestors": [ "4321abcdef694aa79dae47ad" ], "name": false, "description": -99034130 }, "variables": { "incoming": { "inputVariable": "inputValue" }, "outgoing": { "outputVariable": null }, "error": "", "decorators": [ { "type": "encryption", "pointer": "do aliqua exercitation" }, { "type": "encryption", "pointer": "exercitation enim" }, { "type": "encryption", "pointer": "aute" } ] }, "metrics": { "retrying": false }, "name": true, "summary": -41516485, "displayName": -45506692, "type": 12481414.843956932, "x": -11172789, "y": 21801510.72057654 } ], "skip": 0, "limit": 50, "total": 100 }
{ "title": "tasks", "type": "object", "properties": { "results": { "type": "array", "items": { "$ref": "taskDocument" } }, "skip": { "$ref": "wfEngineCommon#/definitions/skip" }, "limit": { "$ref": "wfEngineCommon#/definitions/limit" }, "total": { "$ref": "wfEngineCommon#/definitions/total" } } }