Hi everyone, I am noticing some weird behavior. I...
# community-help
i
Hi everyone, I am noticing some weird behavior. I have two collections, collection A and collection B, when querying these collections I am using the
facet_by
field as well as the
max_facet_values
field. Initially it is set to 10. The results of one collection A look like this:
Copy code
{
   facet_counts: [
      stats: { total_values: 10 } // This is wrong, there are more than 10 total values for this one
   ]
}
While the results for collection B have the correct
total_values
set
Copy code
{
   facet_counts: [
      stats: { total_values: 230 }
   ]
}
I hope this makes sense. I am using Typesense 28.0 Anyone else notice this?