Re: Graph Query Parser Syntax

2020-02-27 Thread sambasivarao giddaluri
Hi All , any suggestions? On Fri, Feb 14, 2020 at 5:20 PM sambasivarao giddaluri < sambasiva.giddal...@gmail.com> wrote: > Hi All, > In our project we have to use multiple graph queries with AND and OR > conditions but graph query parser does not work for the below scenario

Graph Query Parser Syntax

2020-02-14 Thread sambasivarao giddaluri
Hi All, In our project we have to use multiple graph queries with AND and OR conditions but graph query parser does not work for the below scenario, can any one suggest how to overcome this kind of problem? this is stopping our pre prod release . we are also using traversalFilter but our usecase

Re: Using Deep Paging with Graph Query Parser

2019-12-17 Thread Chris Hostetter
: Is there a way to use combine paging's cursor feature with graph query : parser? it should work just fie -- the cursorMark logic doesn't care what query parser you use. Is there a particular problem you are running into when you send requests using both? -Hoss http://www.lucidworks.com/

Graph Query Parser with pagination

2019-12-11 Thread sambasivarao giddaluri
Hi All, Is it possible to search on a index using graph query parser with pagination available . ex: 1 <--2<--3 1 <--4<--5 1 <--6<--7 and so on 1 is parent of 2,4 and 2 is parent of 3 and 4 is parent of 5 1 is doc type A and 2,4 are of type doc B and 3,5 are of type C simil

Using Deep Paging with Graph Query Parser

2019-12-08 Thread mmb1234
Is there a way to use combine paging's cursor feature with graph query parser? Background: I have a hierarchical data structure that is split into N different flat json docs and updated (inserted) into solr with from/to fields. Using the from/to join syntax a graph query is needed since

Re: graph query parser: depth dependent score?

2019-02-27 Thread Jochen Barth
Dear reader, I've found an different solution for my problem and don't need a depth dependent score anymore. Kind regards, Jochen Am 19.02.19 um 14:42 schrieb Jochen Barth: Dear reader, I'll have a hierarchical graph "like a book": { id:solr_doc1; title:book } { id:solr_doc2; title:chapter;

graph query parser: depth dependent score?

2019-02-19 Thread Jochen Barth
Dear reader, I'll have a hierarchical graph "like a book": { id:solr_doc1; title:book } { id:solr_doc2; title:chapter; parent_ids: solr_doc1 } { id:solr_doc3; title:subchapter; parent_ids: solr_doc2 } etc. Now to match all docs with "title" and "chapter" I could do: +_query_:"{!graph

Graph Query Parser

2017-05-03 Thread mganeshs
All, Is any one using graph query parser with Solr 6+ versions? Is that working fine as expected ? Can you guys guide me with some working data model and configurations to set ? I tried with sample provided over here https://cwiki.apache.org/confluence/display/solr/Other+Parsers#OtherParsers

Re: Graph Query Parser

2016-08-23 Thread Joel Bernstein
onl...@gmail.com> wrote: > Hello, > > I am trying to get "path" from root node to leaves using Graph Query > Parser. Graph Query Parser gives me all child nodes from root but not > specific paths. Can someone suggest how to get that? > > e.g: If i have parent to ch

Graph Query Parser

2016-08-23 Thread Jigar Shah
Hello, I am trying to get "path" from root node to leaves using Graph Query Parser. Graph Query Parser gives me all child nodes from root but not specific paths. Can someone suggest how to get that? e.g: If i have parent to child relation as follows. A -> B,C -> D D is