-
I was wondering if I am doing something wrong here. my config looks like this => 'statamic_all' => [
'driver' => 'meilisearch',
'searchables' => ['collection:articles'],
'fields' => ['id', 'title', 'url'],
'settings' => [
'filterableAttributes' => ['type'],
'distinctAttribute' => 'thread',
'stopWords' => ['der', 'die', 'das'],
'sortableAttributes' => ['timestamp'],
'rankingRules' => [
'sort',
'words',
'typo',
'proximity',
'attribute',
'exactness',
],
],
], But after using the search index update command it seems that there are entries but they or empty? The search via api does not return any entries... Does anybody have an idea why this might not work? |
Beta Was this translation helpful? Give feedback.
Answered by
tao
Jan 11, 2023
Replies: 1 comment 1 reply
-
Does your collection have a field called |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
leganz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does your collection have a field called
thread
for grouping articles or was that copied over from the example by mistake? It might be trying to return entries with the distinct field that doesn't exist so it doesn't return anything 🤔