Is it possible to use this library to filter on an array?
For example, we have the following object :
{ "id": "1234", "name": "filename", "tags": [ "57569226c86f0238048d6499" ], "contentType": "57a0af22ba4b03af610afdee", }
We would like to filter on "contentType" and on "tags". If we do the following in our code, it works perfectly :
`
`
But if we try that with tags (which is an array), the filter does not work.
Thanks,
Robbert
Hi
Is it possible to use this library to filter on an array? For example, we have the following object :
{ "id": "1234", "name": "filename", "tags": [ "57569226c86f0238048d6499" ], "contentType": "57a0af22ba4b03af610afdee", }
We would like to filter on "contentType" and on "tags". If we do the following in our code, it works perfectly :
`