cypher - Whats wrong with Neo4j 2.0 Query? -
i trying understand why data not showing in query. wondering if there way troubleshoot whats going on.
here current issue:
i have populated data existing test database check performance relation : (e:event)-[:for_user]->(u:user)
when users , @ property, can see data, when query users using same data says 0 records found.
below image shows 2 query:
can 1 please me understand how debug such issue in neo4j
edit
issue browser somehow truncating multiple spaces in result. in case "user-may<space>1 2013 1:18am
" displayed on both webadmin , new browser, in reality should have been "user-may<space><space>1 2013<space><space>1:18am
"
so no matter can't query value looks duplicate space truncated somewhere.
tabular data micheal suggested below
{"id":"75307","labels":["user"],"properties":{"name":"user-may 1 2013 1:18am"}}
and seeing user-may 1 2013 1:18am
regards kiran
use following cypher syntax in browser:
match (user:user { name: "user-may 1 2013 1:18am" }) return user.name name
as far rendering of multiple spaces being trimmed, browser specific functionality. see screenshot below example:
the text preserved returned neo4j server. can see when analyze html element of browser using firebug, redundant spaces indeed there.
so again, doesn't seem bug neo4j, it's how browser using renders text. browser expects redundant spaces encoded
so: "testing testing" html encoded testing testing
Comments
Post a Comment