Dear community,
is there a way to query collections with wildcard on attributes (keys)?
If we have the collection below, and I would like to retrieve all entries having attributes with a key containing “_address”, would there be any way to achieve this in a query?:
[
{
name: "contact_1",
business_address: "street 1"
},
{
name: "contact_2",
personal_address: "street 2"
},
{
name: "contact_3",
number: 123456
}
]
The query should lead to retrieval of contact_1 and contact_2.