Search through JSON

Hi,

Can we use queries to search through parsed JSON?

For Example:

m.pJson = { "shows" :  { free_shows : [ { "id" : 121, "title" : "xyz" }, { "id" : 122, "title" : "abc" }, { "id" : 123, "title" : "rst" } ] }  }

from this i want to search free_shows where title is abc without using loop.
is it possible?
because for deep linking i can’t search through json using for loop, it will take time to search over 100 or above shows or episodes