Search ​Search

yaml
type: "io.kestra.plugin.meilisearch.search"
yaml
id: meilisearch_search_flow
namespace: company.team

variables:
  index: movies
  query: "Lord of the Rings"
  host: http://172.18.0.3:7700/

tasks:
  - id: search_documents
    type: io.kestra.plugin.meilisearch.Search
    index: "{{ vars.index }}"
    query: "{{ vars.query }}"
    url: "{{ vars.host }}"
    key: "{{ secret('MEILISEARCH_MASTER_KEY') }}"

  - id: to_json
    type: io.kestra.plugin.serdes.json.IonToJson
    from: "{{ outputs.search_documents.uri }}"
Properties
Format uri