Re: Applying streaming expression as a filter in graph traversal expression (gatherNodes)

2018-06-22 Thread Pratik Patel
Hi Joel, Thanks for the reply! I have indexed graph data in solr where an "event" can have one or more "participants". Thus, it's a graph of "participants" connected to each other via "events". Because participants are multiple, I am indexing the graph as follows. event--event_participant_c

Re: Applying streaming expression as a filter in graph traversal expression (gatherNodes)

2018-06-21 Thread Joel Bernstein
Currently the gatherNodes expression can only be filtered by a traditional filter query. I'm curious about the type of expression you are thinking of filtering by? Joel Bernstein http://joelsolr.blogspot.com/ On Wed, Jun 20, 2018 at 1:54 PM, Pratik Patel wrote: > We can limit the scope of graph

Applying streaming expression as a filter in graph traversal expression (gatherNodes)

2018-06-20 Thread Pratik Patel
We can limit the scope of graph traversal by applying some filter along the way as follows. gatherNodes(emails, walk="john...@apache.org->from", fq="body:(solr rocks)", gather="to") Is it possible to replace "body:(solr rocks)" by some streaming expression lik