Summary 
          Get a brief about Task(s) for currently running Jobs
          Description 
          Get brief information about task(s) from the tasks collection in mongoDB. This will return only tasks that are attached to a currently running Job
          Route 
          POST /workflow_engine/queryTasksBrief
          Roles 
          
            admin 
apiread 
          
          Parameters 
          
            Details Example Schema 
          
          
            
              
                Name 
                Type 
                Required 
                Description 
               
             
            
              
    query 
    object 
    yes 
    An object of property names and values to use in the query against the tasks collection. The property name must exist in the tasks collection. There must be at least 1 field you query upon.  
   
             
          
          
            Copied to Clipboard 
            {
  "query": {
    "someFieldName": "Some Value to query the against the someFieldName property"
  }
}
           
          
          Return 
          
            Details Example Schema 
          
          
            
              
                Name 
                Type 
                Description 
               
             
            
              
                task_details_array 
                array 
                Jobs' Tasks matching the query. 
               
             
          
          
            Copied to Clipboard 
            [
  {
    "_id": "4321abcdef694aa79dae47ad",
    "job": {
      "_id": "5cb7b531d06cceb89fd21b1c",
      "task": "cd34",
      "ancestors": [
        "5cb7b531d06cceb89fd21b1c",
        "5cb7b531d06cceb89fd21b1c"
      ],
      "name": true,
      "description": 92789240.2454252
    },
    "variables": {
      "incoming": {
        "inputVariable": "inputValue"
      },
      "outgoing": {
        "outputVariable": null
      },
      "error": "",
      "decorators": [
        {
          "type": "encryption",
          "pointer": "dolore non magna est"
        }
      ]
    },
    "metrics": {
      "retrying": false
    },
    "name": -82296641,
    "summary": 80515208.72401032,
    "displayName": false,
    "type": false,
    "x": "consectetur ad",
    "y": -3705642.99714382
  },
  {
    "_id": "5cb7b531d06cceb89fd21b1c",
    "job": {
      "_id": "5cb7b531d06cceb89fd21b1c",
      "task": "cd34",
      "ancestors": [
        "5cb7b531d06cceb89fd21b1c",
        "4321abcdef694aa79dae47ad",
        "4321abcdef694aa79dae47ad",
        "5cb7b531d06cceb89fd21b1c",
        "4321abcdef694aa79dae47ad"
      ],
      "name": -54668418.863082334,
      "description": 35287674
    },
    "variables": {
      "incoming": {
        "inputVariable": "inputValue"
      },
      "outgoing": {
        "outputVariable": null
      },
      "error": "",
      "decorators": [
        {
          "type": "encryption",
          "pointer": "aliquip"
        },
        {
          "type": "encryption",
          "pointer": "ad esse qui"
        },
        {
          "type": "encryption",
          "pointer": "aute sit in in"
        }
      ]
    },
    "metrics": {
      "retrying": true
    },
    "name": false,
    "summary": false,
    "displayName": -81373507.2387884,
    "type": -96098817,
    "x": true,
    "y": -9290496.25450413
  },
  {
    "_id": "5cb7b531d06cceb89fd21b1c",
    "job": {
      "_id": "5cb7b531d06cceb89fd21b1c",
      "task": "12ab",
      "ancestors": [
        "4321abcdef694aa79dae47ad",
        "4321abcdef694aa79dae47ad"
      ],
      "name": 89390308,
      "description": "officia voluptate anim deserunt aliquip"
    },
    "variables": {
      "incoming": {
        "inputVariable": "inputValue"
      },
      "outgoing": {
        "outputVariable": null
      },
      "error": "",
      "decorators": [
        {
          "type": "encryption",
          "pointer": "velit fugiat Ut esse elit"
        },
        {
          "type": "encryption",
          "pointer": "consectetur ad veniam reprehenderit"
        },
        {
          "type": "encryption",
          "pointer": "commodo aliquip"
        }
      ]
    },
    "metrics": {
      "retrying": true
    },
    "name": -71694008,
    "summary": 76671990,
    "displayName": -47973641.0804755,
    "type": -30183920.504953846,
    "x": true,
    "y": "labore ut eiusmod nisi in"
  }
]
           
          
            Copied to Clipboard 
            {
  "title": "task_details_array",
  "type": "array",
  "items": {
    "$ref": "taskDocument" 
  }
}