You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when using a group by query with the instantsearch adapter, the results will be flattened. ie: groupLimit = 4 means that I will have # of results per page X 4 results showing on the page.
Expected Behavior
Only show the first items from the group and allow secondary items in the group to be access via an array in the Hits object rendering. That way, from the Hits widget, we can put in custom rendering to decide how to handle additional items in a group.
The text was updated successfully, but these errors were encountered:
I've added the ability to turn off grouped result flattening in 2.7.1-4 of the adapter. If you upgrade to it and then add flattenGroupedHits: false you should see unflattened results:
Description
when using a group by query with the instantsearch adapter, the results will be flattened. ie: groupLimit = 4 means that I will have # of results per page X 4 results showing on the page.
Expected Behavior
Only show the first items from the group and allow secondary items in the group to be access via an array in the Hits object rendering. That way, from the Hits widget, we can put in custom rendering to decide how to handle additional items in a group.
The text was updated successfully, but these errors were encountered: