Cristian
01/26/2025, 2:24 AM...
{
"facet": false,
"index": true,
"infix": false,
"locale": "",
"name": "ingredients.food_bsemte8amo4tc3a5t84zobk0ms09.quantity",
"optional": true,
"sort": true,
"stem": false,
"store": true,
"type": "int64"
},
...
I want to prevent this behavior because the keys will constantly change and I only want to index the predefined structure. Is it even possible to prevent this from happening?Jason Bosco
01/26/2025, 2:44 AMobject
as the data type, you can specify certain subfields to be indexed by using dot notation, and specifying a native data type like string
or int32
for them.
Eg: {"name": "address.zip", "type": "string"}
Cristian
01/26/2025, 2:46 AMJason Bosco
01/26/2025, 2:47 AM