Hi Experts,
Hope you are doing good.
I am pulling a json file through and API call and then use parse Json in flow to read through it. This works fine, then i also use filter array to get only one part in the entire JSON file but some of the values are repeated but i want only one of those. Is there a Distinct or Top 1 in the filter array that i can use?
Example:

[
{ "first": "Deon", "last": "Herb","Color" :"Blue","Time":"2020-07-21 08:06:22 -04:00" },
{ "first": "Deon", "last": "Herb","Color" :"Blue","Time":"2020-07-21 07:08:22 -04:00"},
{ "first": "K", "last": "Herb","Color" :"Yellow","Time":"2020-07-21 04:06:22 -04:00" },
{ "first": "K", "last": "Herb","Color" :"Yellow","Time":"2020-07-21 08:17:22 -04:00" } ]
Lets say the above is the output from the Parse JSON, now i want it filtered for color -Blue. When i use the filter JSON in the flow and select the field to be color and then give the value as Blue it does filter and shows me the first two lines but i want only one line. How can i do it? is there a way i can give a condition in the filter array to get what i desire or should i use some other connector to achieve it?
Thanks in advance for your response.