Hi
In my data I have an array of objects with name and value fields like this:
[
{
name : “length”
value : “22”
},
{
name : “width”
value : “15”
},
{
name : “height”
value : “45”
},
]
Is it possible to have a projection where I get in the result set only that entries for instance with name = length, like this:
[
{
name : “length”
value : “22”
}
]
Thanks in advance