Consider the following JSON object:
[
{
"name":"joe",
"place":"here",
"type":[
"abc",
"cde",
"efg"
]
},
{
"name":"ian",
"place":"somewhere",
"type":[
"c",
"ddd",
"eee"
]
},
{
"name":"mike",
"place":"there",
"type":[
"any",
"place",
"nice"
]
},
]
How would I create a predicate in Objective-C to query the values of the different "type" objects and filter based on that
Thanks