saleemjaffer
JJanusGraph
•Created by saleemjaffer on 10/22/2024 in #questions
Need some advice on using Edge Indexes efficiently.
I have a usecase where
- I have to find a source vertex
- From the source vertex, I need to find the edges that match certain filters.
To find the source vertex, I can use a Graph Index(mixed index).
To find the edges from the source vertex that match the filters, and to make the query faster, I can build "Edge indexes" on the properties that would be part of the filters. Looks like Edge indexes, or Vertex Centric indexes, support only equality on string fields.
My use-can can have all the filters that ElasticSearch supports. How can I achieve this?
1 replies