OK, upon Dan Greene's advise, here is some of the code I used to make the
database. This is only a small subset of the nodes and relationships.
CREATE (blor:Body_Location_or_Region:Anatomy:ANAT:UMLS{STY_RL:'Body
Location or Region',RT:'STY',UI:'T029',STN_RTN :'A2.1.5.2',EX :0,NH :'Y'})
CREATE
(bpoc:Body_Part_Organ_or_Organ_Component:Anatomy:ANAT:UMLS{STY_RL:'Body
Part, Organ, or Organ Component',RT:'STY',UI:'T023',STN_RTN :'A1.2.3.1',EX
:0,NH :'0'})
CREATE (bsoj:Body_Space_or_Junction:Anatomy:ANAT:UMLS{STY_RL:'Body Space or
Junction',RT:'STY',UI:'T030',STN_RTN :'A2.1.5.1',EX :0,NH :'Y'})
CREATE
(cell:Cell:Anatomy:ANAT:UMLS{STY_RL:'Cell',RT:'STY',UI:'T025',STN_RTN
:'A1.2.3.3',EX :0,NH :'0'})
CREATE
1.
(blor)-[:ADJACENT_TO{Source:'UMLS',UI_RL:'T135',RL:'adjacent_to',LS:'D',LS_NAME:'Defined
for the Arguments and its children'}]->(bpoc),
2. (blor)-[:ADJACENT_TO]->(blor),
<-----Dan
Greene most generously pointed out to me that self-referring nodes are
trouble. Got it.
3. (blor)-[:ADJACENT_TO]->(bsoj),
4. (bpoc)-[:ADJACENT_TO]->(bpoc),
<-----Another
self-referring node.
5. (bpoc)-[:ADJACENT_TO]->(bsoj),
6. (bpoc)-[:ADJACENT_TO]->(cell)
So to more specifically describe the problem, when I click on any (blor)
node, I see the same label and property information. However, when click
on the relationships in path 2-6, I don’t find the same relationship
property information.
Its been a while, but I did this because I was getting an error message for
including all the relationship property information every time I defined
the many relationships.
So the question is.... How can I make sure all the relationship property
info is present every time I define a relationship between two nodes if
Neo4j gives me an error message for doing so?
--
You received this message because you are subscribed to the Google Groups
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.