imagine the JSON array to have a list of key-value pairs.
<search_parameter>: <value>
...
name: "John"
age:"20"
dept: "Development"
...
Now, I want to dynamically query the employee list based on the key-value pairs I receive. For each time, I receive a different number of key-value pairs.
I may receive name alone sometimes and I may receive age as well at times. It could be just the dept at times.