You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apparently, when triggering the /diff/service/trigger endpoint of https://github.com/SemsProject/masymos-diff-rest (some?) diffs are re-computed!? That is, there may be multiple DIFF nodes between two DOCUMENT nodes..
Stringquery = "Match (a:DOCUMENT)-[:HAS_SUCCESSOR]->(b:DOCUMENT) Where NOT (a)-->(:DIFF)-->(b) and (a)-->(:MODEL) and (b)-->(:MODEL) Return a,b Limit {limit}";
(and the following queries)
The connections between DOCUMENT and DIFF is always DOCUMENT-[]->DIFF! The query, however, searches for
Where NOT (a)-->(:DIFF)-->(b)
while it should search for
Where NOT (a)-->(:DIFF)<--(b)
binfalse
added a commit
to binfalse/masymos-diff
that referenced
this issue
Jul 12, 2017
Apparently, when triggering the
/diff/service/trigger
endpoint of https://github.com/SemsProject/masymos-diff-rest (some?) diffs are re-computed!? That is, there may be multipleDIFF
nodes between twoDOCUMENT
nodes..Especially annoying as #1 is unfixed..
The text was updated successfully, but these errors were encountered: