meilisearch / integration-guides

Central reference for Meilisearch integrations.
https://meilisearch.com
MIT License
136 stars 15 forks source link

Code sample changes Apr/23 #258

Closed maryamsulemani97 closed 1 year ago

maryamsulemani97 commented 1 year ago
  1. Update filtering_guide_1 to use the movie_ratings index instead of movies meilisearch/documentation#2061
  2. Update filtering_guide_2 to use the movie_ratings index instead of movies meilisearch/documentation#2061
  3. Update filtering_guide_3 to use: meilisearch/documentation#2061
    • movie_ratings index instead of movies
    • "filter": "release_date > 1577884550 AND (NOT director = \"Tim Burton\")"
  4. Update filtering_guide_nested_1 to use the movie_ratings index instead of movies meilisearch/documentation#2061
  5. Update faceted_search_update_settings_1 to use the movie_ratings index instead of movies meilisearch/documentation#2061
  6. Remove faceted_search_filter_1 meilisearch/documentation#2061
  7. Update faceted_search_2 meilisearch/documentation#2263
    • Use string syntax instead of arrays. Updated query:
      '{
      "queries": [
      {
        "indexUid": "books",
        "facets": ["language", "genres", "author", "format"],
        "filter": "(language = English AND language = French) OR genres = Fiction"
      },
      {
        "indexUid": "books",
        "facets": ["language"],
        "filter": "genres = Fiction"
      },
      {
        "indexUid": "books",
        "facets": ["genres"],
        "filter": "language = English OR language = French"
      }
      ]
      }'
  8. Update geosearch_guide_filter_usage_3 meilisearch/documentation#2216
    { "filter": "_geoBoundingBox([45.494181, 9.214024], [45.449484, 9.179175])" }'
maryamsulemani97 commented 1 year ago

@brunoocasali

This issue contains the non-release code samples. Can you please transfer it to the integration-guides repo? Thanks 🙏

brunoocasali commented 1 year ago

I've created PRs for JS and PHP and I will create issues for the other SDKs.

brunoocasali commented 1 year ago

I'm closing this issue since all the repositories have their own tracking of this request.

curquiza commented 1 year ago

Re opening becasue not fixed everywhere, and we need to clean our scope

curquiza commented 1 year ago

Done ✅