BrandOriented / PimcoreCiHubConnector

This bundle adds full integration between Pimcore and CI-HUB Connector. Now you can add, delete and download all assets, lock and unlock, get all versions for specified asset and much more.
https://brandoriented.io/
Other
5 stars 6 forks source link

Filter fix: index field type is text, not keyword #40

Closed wkania closed 3 months ago

wkania commented 3 months ago

Filters in Tree endpoint were working when the field type was.

"FileType": {
  "type": "text",
  "fields": {
    "keyword": {
      "type": "keyword",
      "ignore_above": 256
    }
  }
}

Now, the field type is:

"FileType": {
  "type": "keyword",
  "fields": {
    "analyzed": {
      "type": "text",
      "term_vector": "yes",
      "analyzer": "datahub_ngram_analyzer",
      "search_analyzer": "datahub_whitespace_analyzer"
    }
  }
}
wkania commented 2 months ago

https://github.com/BrandOriented/PimcoreCiHubConnector/issues/26