This repository was archived by the owner on Dec 10, 2021. It is now read-only.

Description
I have two kind of documents, A and B, I index them in bulk with different document id prefix. basically like:
{"fields":{"code":"xxx","name":"xxx"},"id":"path/A/10"}
{"fields":{"code":"xxx","name":"xxx"},"id":"path/A/11"}
{"fields":{"code":"xxx","name":"xxx"},"id":"path/B/20"}
{"fields":{"code":"xxx","name":"xxx"},"id":"path/B/21"}
Now I only want to search documents with id prefix "path/A/". How to do this?