hi, i want to create a network graph from the data available in my elasticsearch index, currently if i want to create such network graph i need to find all the relationship between returned data but my elasticsearch db is huge, so i have to query all the possible matches from search not top 100 or 200 but 5k or 10k sometimes even bigger, so it makes my graph creation really slow.
so my question here is how to make such network graph really fast, is it possible to create network graph using elasticsearch? Or we have to go for some graph database for example(neo4j etc..)?
Thank you.