Hello everyone,
I don't manage to filter the get items sharepoint action on a choice field. I'd like to filter my items on the field 'TaskOutcome' with the value 'Not Started'
Here a part of the json :
"value":[
{
"@odata.etag":"\"1\"",
"ItemInternalId":"30",
"ID":30,
"Title":"BAP Tech; ZZ-DEMO VIA; FOUR DEMO; REF : IT15",
"AssignedTo":{ },
"AssignedTo#Claims":"i:0#.f|membership|xxxx@xxxx.com",
"TaskOutcome":{
"@odata.type":"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id":0,
"Value":"Not Started"
},
"TaskOutcome#Id":0,
"WorkflowItemId1":2812,
I don't manage to filter on "TaskOutcome" or "TaskOutcome#Id".
I know that I can achieve this by getting all items and then filter via a each action and a condition, but i'd like to do it via the filter for better performance.
Do you know if it can be done ?
Thanks