Workflow execution failed

Hi @JackSparrow

Can you try adding a query result filter to limit the output size and see if it works for you. I know there is a limit for the allowed size in a WF and in a loop

eg:

{
    "indices": [
        "identities"
    ],
    "query": {
        "fields": [
            "name"
        ],
        "query": "attributes.uid:123"
    },
    "queryResultFilter": {
        "includes": [
            "id",
            "name"
        ]
    }
}
1 Like