cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

jithuprabhakara
Node
since ‎02-04-2021
‎06-01-2022

User Statistics

  • 4 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Am facing an issue to parse a String to Date, String is "2021-03-12T09:14:38.353+00:00", I need to fetch data between some dates, for that, I need to parse this string to Date. Any help will be appreciated.
I have created a graphQl service getStudent(id: Int!,collegeID: Int!): [Student] @cypher(statement: """ MATCH (s:Student {id:$id})-[:STUDENT_OF]->(c:College {id:$collegeID}) RETURN s """) The above service will return student, Now Assume I h...
I have a requirement to delete a relationship alone(not nodes) if exists and then create a new relationship with existing nodes. All two operations should occur in a single statement. Am able to delete and create at the same time, only when a relatio...