Click here to Skip to main content
15,898,035 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: having some fun looking into graph databases I Pin
BillWoodruff9-Feb-20 23:42
professionalBillWoodruff9-Feb-20 23:42 
GeneralRe: having some fun looking into graph databases I Pin
phil.o9-Feb-20 22:55
professionalphil.o9-Feb-20 22:55 
GeneralRe: having some fun looking into graph databases I Pin
BillWoodruff10-Feb-20 0:09
professionalBillWoodruff10-Feb-20 0:09 
GeneralRe: having some fun looking into graph databases I Pin
phil.o10-Feb-20 0:13
professionalphil.o10-Feb-20 0:13 
GeneralRe: having some fun looking into graph databases I Pin
F-ES Sitecore9-Feb-20 23:01
professionalF-ES Sitecore9-Feb-20 23:01 
GeneralRe: having some fun looking into graph databases I Pin
Jon McKee10-Feb-20 6:29
professionalJon McKee10-Feb-20 6:29 
GeneralRe: having some fun looking into graph databases I Pin
BillWoodruff10-Feb-20 11:36
professionalBillWoodruff10-Feb-20 11:36 
GeneralRe: having some fun looking into graph databases I Pin
Jon McKee10-Feb-20 13:25
professionalJon McKee10-Feb-20 13:25 
What I was alluding to was that no direction for the relationship is specified in your Cypher query. This means that outgoing and incoming relationships will be searched in the match. So for example:
CREATE (p1:Person)-[:KNOWS]->(p2:Person)

//Matches both p1 and p2
MATCH (p:Person)-[:KNOWS]-(:Person)
RETURN p

//Matches only p1
MATCH (p:Person)-[:KNOWS]->(:Person)
RETURN p
Un-directed was probably a better word to use than bi-directional. My bad. Since it's common to think of directed relationships as p2 "not knowing about" p1 since you can't traverse to p1 directly from p2, I figured I'd point out this little nuance of matching in case you weren't aware. The LINQ example would only match p1 so I thought maybe there was some misunderstanding.
GeneralRe: having some fun looking into graph databases I Pin
BillWoodruff10-Feb-20 15:25
professionalBillWoodruff10-Feb-20 15:25 
GeneralRe: having some fun looking into graph databases I Pin
Richard Deeming10-Feb-20 9:53
mveRichard Deeming10-Feb-20 9:53 
GeneralRe: having some fun looking into graph databases I Pin
BillWoodruff10-Feb-20 11:39
professionalBillWoodruff10-Feb-20 11:39 
GeneralI think the game designers should bear some responsibility here as well... Pin
OriginalGriff9-Feb-20 8:30
mveOriginalGriff9-Feb-20 8:30 
GeneralRe: I think the game designers should bear some responsibility here as well... Pin
Jörgen Andersson9-Feb-20 8:44
professionalJörgen Andersson9-Feb-20 8:44 
GeneralRe: I think the game designers should bear some responsibility here as well... Pin
OriginalGriff9-Feb-20 9:00
mveOriginalGriff9-Feb-20 9:00 
GeneralRe: I think the game designers should bear some responsibility here as well... Pin
Jörgen Andersson9-Feb-20 9:46
professionalJörgen Andersson9-Feb-20 9:46 
GeneralRe: I think the game designers should bear some responsibility here as well... Pin
OriginalGriff9-Feb-20 10:00
mveOriginalGriff9-Feb-20 10:00 
GeneralRe: I think the game designers should bear some responsibility here as well... Pin
Jörgen Andersson9-Feb-20 10:07
professionalJörgen Andersson9-Feb-20 10:07 
GeneralRe: I think the game designers should bear some responsibility here as well... Pin
OriginalGriff9-Feb-20 10:16
mveOriginalGriff9-Feb-20 10:16 
GeneralRe: I think the game designers should bear some responsibility here as well... Pin
Mark_Wallace9-Feb-20 10:19
Mark_Wallace9-Feb-20 10:19 
GeneralRe: I think the game designers should bear some responsibility here as well... Pin
Jörgen Andersson9-Feb-20 20:20
professionalJörgen Andersson9-Feb-20 20:20 
GeneralRe: I think the game designers should bear some responsibility here as well... Pin
Jörgen Andersson10-Feb-20 1:06
professionalJörgen Andersson10-Feb-20 1:06 
GeneralRe: I think the game designers should bear some responsibility here as well... Pin
Mark_Wallace10-Feb-20 6:28
Mark_Wallace10-Feb-20 6:28 
GeneralRe: I think the game designers should bear some responsibility here as well... Pin
Richard MacCutchan9-Feb-20 21:23
mveRichard MacCutchan9-Feb-20 21:23 
GeneralRe: I think the game designers should bear some responsibility here as well... Pin
Gerry Schmitz9-Feb-20 9:15
mveGerry Schmitz9-Feb-20 9:15 
RantRe: I think the game designers should bear some responsibility here as well... PinPopular
Marc Clifton9-Feb-20 10:36
mvaMarc Clifton9-Feb-20 10:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.


Straw Poll

Were you affected by the geomagnetic storms this past weekend?
Communication disruptions, electrified pipes, random unexplained blue-screens in Windows - the list of effects is terrifying.
  Results   368 votes