directus-extension-searchsync icon indicating copy to clipboard operation
directus-extension-searchsync copied to clipboard

Simple Directus 9 extension that sync content with remote search engine.

Results 13 directus-extension-searchsync issues
Sort by recently updated
recently updated
newest added

Hi there. Just wondering if there's any chance we could have the transform as optionally async. I'm trying to get text extraction going, but that relies on waiting for the...

Hi! Trying to add this to my project but getting this output: ``` yarn add dimitrov-adrian/directus-extension-searchsync yarn add v1.22.18 [1/4] Resolving packages... error Couldn't find the binary git ``` Any...

Not so much of an issue but a question or feature request: If I have a M2O or M2M field and update the values in those collections, the changes are...

I have a tag field which is saved as an array field in the collection. I can't access it from fiels: ["tags"]

This line is wrong: https://github.com/dimitrov-adrian/directus-extension-searchsync/blob/main/lib/indexers/meilisearch.js#L47 Current: ``` await axios.delete(`${config.host}/indexes/${collection}`, axiosConfig); ``` It should be: ``` await axios.delete(`${config.host}/indexes/${collection}/documents`, axiosConfig); ``` Instead of deleting the index documents it's deleting the entire index....

The examples show the `image.id` format: > "fields": ["image.id", but this doesn't seem to work. This does work: > "fields": ["image", but it only produces the GUID, none of the...

Hello, Please consider adding support for [OpenSearch](https://opensearch.org/about.html) as a more open-source friendly alternative to Elasticsearch.

Hi, how could I pass search configurations like searchableAttributes to an index? https://docs.meilisearch.com/learn/core_concepts/indexes.html#index-settings

I get this error: unknown command 'extension:searchsync' What am I missing ?

Hey there, is it possible to add a float / timestamp as a UNIX Timestamp? I need it like this: https://docs.meilisearch.com/learn/advanced/working_with_dates.html#preparing-your-documents I tried to transform a directus timestamp (string) to...