Hi Prapul Kumar Dongari
Welcome to Microsoft Q&A platform and thanks for posting your question.
I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others "I'll repost your solution in case you'd like to accept the answer.
Ask: In my pipeline I'm using filter activity to filter desired items from json when input to filter is output of another filter activity (which returned out with empty array)
Solution:
Hi tried with new logic its working as expected.
SQL
AI Convert
Copy
@if(
empty(activity('previous_act_name').output.value),
json('[]'),
activity('previous_act_name').output.value[0].Params
)
If you have any other questions, please let me know. Thank you again for your time and patience throughout this issue.
---Please don’t forget to Accept Answer and Yes for "was this answer helpful" wherever the information provided helps you, this can be beneficial to other community members.