Property you want to filter. Use a list of strings to specify nested properties.
Example:
You have the object
{
"room": {
"id": "b53"
},
"roomId": "a23"
}
Use `["room", "id"]` to return the value in the nested `id` property, which is a part of the `room` object.
You can also read the value(s) in the standalone property `roomId` with `["roomId"]`.
Property you want to filter. Use a list of strings to specify nested properties.
Example: You have the object
{ "room": { "id": "b53" }, "roomId": "a23" } Use `["room", "id"]` to return the value in the nested `id` property, which is a part of the `room` object. You can also read the value(s) in the standalone property `roomId` with `["roomId"]`.