Last active
May 15, 2017 15:15
-
-
Save nicysneiros/19fe9e1a3055427dff7912b5d6defa81 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MATCH (:User {name: “John”}) -[:LIKES]-> (pages) | |
RETURN pages |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@nicysneiros this query also misses the colon before
:User
which again causes a full database scan.do you have the constraint / index on
:User(name)
Also the Titan query returns only the name property, so you might want to do the same here: