Kenn Seangpachareonsub
04/09/2025, 4:30 PMKishore Nallan
04/10/2025, 3:44 AMHarpreet Sangar
04/10/2025, 5:38 AMKenn Seangpachareonsub
04/10/2025, 9:21 AMKenn Seangpachareonsub
04/10/2025, 9:21 AMHarpreet Sangar
04/10/2025, 9:22 AMI actually managed to do it yesterday - thanks for the help tho!Mind sharing how you achieved it?
Also I noticed there may be a bug on the platform within my staging cluster. If you wanted to check it out?For sure.
Kenn Seangpachareonsub
04/10/2025, 9:24 AM?q=*&group_by=tourId&group_limit=1&group_missing_values=false&include_fields=$tour(*, strategy:nest)
> For sure
I dropped a field from my schema and then re-added it straight after with faceting and async referencing etc. It says the schema has been updated but it doesn't show up on the schema and I can't search against the field (error returns saying the field doesn't exist) but I can't re-add the field now cause it says it's existing already 😅Harpreet Sangar
04/10/2025, 9:27 AMKenn Seangpachareonsub
04/10/2025, 9:28 AMKenn Seangpachareonsub
04/10/2025, 9:30 AMHarpreet Sangar
04/10/2025, 9:32 AMHarpreet Sangar
04/10/2025, 10:56 AMKenn Seangpachareonsub
04/10/2025, 1:57 PMKenn Seangpachareonsub
04/10/2025, 2:14 PM{
"name": "show",
"type": "object",
"fields": [
{
"name": "id",
"type": "string",
"reference": "show.id",
"async_reference": true,
"facet": true
},
{ "name": "slug", "type": "string" }
]
},
Harpreet Sangar
04/11/2025, 3:33 AMObject_name.field_name
convention to declare the object fields in the schema like:
{ "name": "show", "type": "object"},
{ "name": "show.id", "type": "string", "reference": "show.id", "async_reference": true, "facet": true }
{ "name": "show.slug", "type": "string" }
Kenn Seangpachareonsub
04/11/2025, 8:17 AM