on Neo4j webpage, following cypher command could return two node MATCH p=(n:MAC {MacAddr:'0022.bdf8.0005'})-[:UP_LINK]->()RETURN p In these two nodes, relationship is "UP_LINK", source node is 'n' with a specific value, and it also return destination node,
but in neo4j-go-driver: the following code: cypher := `MATCH p=(n:MAC {MacAddr:'0022.bdf8.0005'})-[:UP_LINK]->()RETURN p` result, err := tx.Run(Cypher, nil) it could not match any node and result.Err() is nil. anyone can comments on this? Thanks and regards! bosun. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/b073bfcb-1155-4a73-979c-c0995c96d946n%40googlegroups.com.