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
It would also be a huge performance boost if we took the attributes that have "simple" mappings (attribute equality, for instance) and auto-generated a set of hints from that. For example,
MATCH (A)-[]->(B)
WHEREB.username=="j6k4m8"RETURNA
We should see that B can be easily found first, and populate a set of hints with all valid matches for B before we even call the motif search here.
The text was updated successfully, but these errors were encountered:
grandiso.find_motifs
supports ahints
attribute with is a list of partial-mappings, instead of requiring an exhaustive search:It would be a HUGE query savings if we could optionally pass a set of
hints
directly to the grandcypher constructor:It would also be a huge performance boost if we took the attributes that have "simple" mappings (attribute equality, for instance) and auto-generated a set of hints from that. For example,
We should see that
B
can be easily found first, and populate a set of hints with all valid matches forB
before we even call the motif search here.The text was updated successfully, but these errors were encountered: