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
Copy file name to clipboardExpand all lines: README.md
+77-1Lines changed: 77 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,6 +138,62 @@ Once you have a collection containing documents indexed in MeiliSearch, you can
138
138
139
139
Using the above credentials the following code shows how to search on one of your collections:
140
140
141
+
To search in MeiliSearch, you can use the [instant-meilisearch](https://github.com/meilisearch/instant-meilisearch) SDK that integrates a whole search interface, or our library [meilisearch-js](https://github.com/meilisearch/meilisearch-js).
142
+
143
+
#### ⚡️ Using Instant meiliSearch
144
+
145
+
146
+
In Instant MeiliSearch you only have to provide your credentials and your index name (`restaurant` is the index name in our example).
147
+
148
+
You can have a quick preview the following code in a HTML file
"description": "Welcome to Biscotte restaurant! Restaurant Biscotte offers a cuisine based on fresh, quality products, often local, organic when possible, and always produced by passionate producers.",
219
+
"categories": []
220
+
}
221
+
],
222
+
"offset": 0,
223
+
"limit": 20,
224
+
"nbHits": 1,
225
+
"exhaustiveNbHits": false,
226
+
"processingTimeMs": 1,
227
+
"query": "biscoutte"
228
+
}
229
+
```
230
+
155
231
## 💡 Learn More
156
232
157
233
If you don't have a running Strapi app, you can still try this plugin using either of one of the following options:
0 commit comments