Summary
          Evaluation
          Description
          Run a test evaluation.
          Route
          POST /workflow_engine/runEvaluationGroup
          Roles
          
            admin
apiwrite
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | 
                Type | 
                Required | 
                Description | 
              
            
            
              
    | evaluation_group | 
    array | 
    yes | 
    Array of evaluations to run | 
  
    | all_true_flag | 
    boolean | 
    yes | 
    All evaluation groups must pass, or not | 
  
            
          
          
            Copied to Clipboard
            
            {
  "evaluation_group": [
    {
      "operand_1": "incididunt enim mollit Lorem cupidatat",
      "operator": "contains",
      "query": "somePropertyNameInOperand_1IfItIsAnObject"
    },
    {
      "operand_1": 26875231.238549665,
      "operator": "contains",
      "operand_2": "amet ex exercitation officia pariatur",
      "query": "somePropertyNameInOperand_1IfItIsAnObject"
    },
    {
      "operand_1": false,
      "operator": "contains",
      "operand_2": [],
      "query": "somePropertyNameInOperand_1IfItIsAnObject"
    },
    {
      "operand_1": [],
      "operator": "contains",
      "operand_2": [],
      "query": "somePropertyNameInOperand_1IfItIsAnObject"
    },
    {
      "operand_1": [],
      "operator": "contains",
      "operand_2": "ea deserunt aliquip ut",
      "query": "somePropertyNameInOperand_1IfItIsAnObject"
    }
  ],
  "all_true_flag": false
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "evaluation_group": {
      "type": "array",
      "items": {
        "$ref": "wfEngineCommon#/definitions/evaluationItem"
      }
    },
    "all_true_flag": {
      "type": "boolean"
    }
  },
  "required": [
    "evaluation_group",
    "all_true_flag"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | 
                Type | 
                Description | 
              
            
            
              
                | evaluation_group_value | 
                boolean | 
                Result of evaluation. | 
              
            
          
          
            Copied to Clipboard
            
            false
           
          
            Copied to Clipboard
            
            {
  "type": "boolean",
  "title": "evaluation_group_value"
}