Replies: 1 comment
-
Answered by ROI in Discord: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey team,
I am hoping you might help me with something.
So I am able to execute a query successfully using the Python SDK.
This is my query:
MATCH (uncle:Person)-[:IS_UNCLE_TO]->(me:Person) WHERE toLower(me.full_name) = "james vincent murphy" OR toLower(me.name) = "james vincent murphy" RETURN uncle;
It gets 4 results. But this is how the results come back.
(:Person{birth:"-1",death:"2016",father:"@I_2102320606@",full_name:"thomas francis murphy",gender:"M",id:"@I_2102319480@",knownas:"tom murphy",lname:"murphy",mother:"@I_2102320378@",nickname:"uncle tom",fname:"thomas francis"})
(:Person{birth:"1950",death:"-1",father:"@I_2102320606@",full_name:"john murphy",gender:"M",id:"@I_2102319522@",knownas:"jack murphy",lname:"murphy",mother:"@I_2102320378@",nickname:"uncle jack",fname:"john"})
(:Person{birth:"1947",death:"2021",father:"@I_2102320606@",full_name:"william murphy",gender:"M",id:"@I_2102319573@",knownas:"bill murphy",lname:"murphy",mother:"@I_2102320378@",nickname:"uncle bill",fname:"william"})
(:Person{birth:"-1",death:"-1",full_name:"bob kershaw",gender:"M",id:"@I_2102280155@",lname:"kershaw",fname:"bob"})
I don't know how to extract the full_name property.
This is my code:
Can you help?
Jim
Beta Was this translation helpful? Give feedback.
All reactions