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.

OmarHamdy
Node Clone
since ‎07-25-2022
‎02-09-2023

User Statistics

  • 27 Posts
  • 0 Solutions
  • 15 Kudos given
  • 0 Kudos received

User Activity

CALL apoc.load.xml("file:///xxxx/xx.xml") YIELD value UNWIND value._children AS GraphicElements WITH GraphicElements,GraphicElements._children as EmbeddedSymbols with GraphicElements, EmbeddedSymbols,  [x in EmbeddedSymbols where x._type = 'EmbeddedS...
I have larger amount of data in the following form :  The nodes tree of data in the form of class containing list of the other  for example :  Class site { string name; List<equipment> equipment; } Class equipment{ string name; List<Tags> tags; } ......
I want to write a query to get my chain of nodes  Loop HAS_TAG Tag  Tag HAS_ALARM Alarm Tag HAS_CABLE Cable  I want the 4 nodes in the same query   
My queries for "Tag" : one for inserting tag and some queries to retrieve them knowing that every tag has one type of alarm so i expected two possibilities :  make every tag has all alarms properties "Digital input" Tag properties like "state0" and "...
I am importing my csv data to Neo4j using data importer but i have an issue about modeling  In my model i have Entity called "Tag" , it has property called "IO_type""IO_type" has two values (Digital input and Analog input)Depending on the "IO_type" v...