Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 9b58a2f

Browse files
Sandbox 🤖fbiville
Sandbox 🤖
authored andcommitted
Updating sandbox graph-data-science
1 parent e110003 commit 9b58a2f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

‎code/csharp/Example.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ static async Task Main() {
1818

1919
var cypherQuery =
2020
@"
21-
MATCH (c:Person{name:$name})-[r:INTERACTS]->(other)
21+
MATCH (c:Person{name:$name})-[r:INTERACTS]->(other)
2222
RETURN other.name as person
2323
";
2424

‎code/go/example.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func runQuery(uri, database, username, password string) (result []string, err er
3030
results, err := session.ReadTransaction(func(transaction neo4j.Transaction) (interface{}, error) {
3131
result, err := transaction.Run(
3232
`
33-
MATCH (c:Person{name:$name})-[r:INTERACTS]->(other)
33+
MATCH (c:Person{name:$name})-[r:INTERACTS]->(other)
3434
RETURN other.name as person
3535
`, map[string]interface{}{
3636
"name": "Jaime Lannister",

‎code/java/Example.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static void main(String...args) {
1717
try (Session session = driver.session(SessionConfig.forDatabase("neo4j"))) {
1818

1919
String cypherQuery =
20-
"MATCH (c:Person{name:$name})-[r:INTERACTS]->(other)" +
20+
"MATCH (c:Person{name:$name})-[r:INTERACTS]->(other)" +
2121
"RETURN other.name as person";
2222

2323
var result = session.readTransaction(

‎code/javascript/example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const driver = neo4j.driver('bolt://<HOST>:<BOLTPORT>',
77

88
const query =
99
`
10-
MATCH (c:Person{name:$name})-[r:INTERACTS]->(other)
10+
MATCH (c:Person{name:$name})-[r:INTERACTS]->(other)
1111
RETURN other.name as person
1212
`;
1313

‎code/python/example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
auth=basic_auth("<USERNAME>", "<PASSWORD>"))
99

1010
cypher_query = '''
11-
MATCH (c:Person{name:$name})-[r:INTERACTS]->(other)
11+
MATCH (c:Person{name:$name})-[r:INTERACTS]->(other)
1212
RETURN other.name as person
1313
'''
1414

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /