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.

vinayak_bali
Node
since ‎02-08-2019
‎06-01-2022

User Statistics

  • 7 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Data Model along with Count's is as follows: Nodes: A(40),B(100) Relationship: AA(self-relation with nodes of label A) count: 36, AB(from A to B) count:0 Query1: Match (p:A)-[b:AA]->(p1) OPTIONAL MATCH (p1)-[d:AB]->(c:B) RETURN p,p1,b,d,c Output: A(...
The data model is as shown in the above diagram. The queries are generated based on multiple selections of nodes and relationships. A sample query is as follows: MATCH (Ve_0:Node4)-[Su_2:Rel1]->(Ma_1:Node3) WHERE Ma_1.property1 IN ['A','B','C'] OPTI...
The schema is as shown in the image uploaded. Need to generate a query for multiple selections of nodes and relationships for returning data as well as a separate query for the count with filters applied. Tried the following query: MATCH (Ve_0:Node4...
Hi All, I am using Neo4j Desktop Version. The hardware configuration of the system are as follows: RAM: 8 GB Storage: 128 GB Tired loading 5.3 billion nodes into the system. But it was unsuccessful, the error throw was heap size exceeded. Again tried...
Hi, I am using the neovis library to run the cypher query on the browser using javascript browser. I visualisation of is visible on the browser. But the problem is I need to show the labels of nodes and relationship at the side of the visualisation a...