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...