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.

Raj725
Node Clone
since ‎09-10-2018
‎11-09-2022

User Statistics

  • 20 Posts
  • 0 Solutions
  • 14 Kudos given
  • 6 Kudos received

User Activity

I need to create an extra field from the 3 fields from the input.  name, age, and year will be part of the input to a create request, and I want to customize the mutation on the server and add an extra field to the input the let the remaining process...
I am trying to make a GraphQL server Relay compliant. I trried to add Node interface in the schema.graphql (as suggested on Relay.dev graphql-server-specification) but I am getting the following error: Error: Type or Interface with name `Node` reserv...
I want to find all the paths from the leaf node(E) to the root node(A). Not for any specific node so no id or filed filter here. The data model is as shown in the screenshot. I used a basic Cypher query to find the paths: MATCH path=(:A)-[:USE*]->(:E...
We can check the database size etc from the neo4j browser. Is there any way to check the neo4j configurations from the browser like dbms.memory.heap.max_size etc?
Hi, I am trying to write a Cypher query to return the start and end nodes of all the patterns(subgraphs/paths) that are in the following regular expression: A.(B|C.D)*.E Start node: A End node: E Relationship Types: B,C,D The path will have different...