Hamp Goodwin
08/19/2025, 7:04 PMHamp Goodwin
08/19/2025, 7:06 PM[
{
"operation": "CREATE",
"resource": "collection",
"data": {
"enable_nested_fields": true,
"name": "admin_deals_initial",
"fields": [
{
"name": "accountManager",
"type": "object",
"fields": [
{
"name": "id",
"type": "int32"
},
{
"name": "fullName",
"type": "string",
"facet": true,
"index": true,
"sort": true
}
]
},
But the docs indicate this should be the way
[
{
"operation": "CREATE",
"resource": "collection",
"data": {
"enable_nested_fields": true,
"name": "admin_deals_initial",
"fields": [
{
"name": "accountManager",
"type": "object",
},
{
"name": "accountManager.id",
"type": "int32"
},
{
"name": "accountManager.fullName",
"type": "string",
"facet": true,
"index": true,
"sort": true
}
...
Hamp Goodwin
08/19/2025, 7:26 PMJason Bosco
08/20/2025, 1:27 AM