Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🤖 Sandbox code update #31

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 26 additions & 35 deletions code/go/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
package main

import (
"context"
"fmt"
"github.com/neo4j/neo4j-go-driver/v4/neo4j"
"io"
"github.com/neo4j/neo4j-go-driver/v5/neo4j"
"reflect"
)

Expand All @@ -19,48 +19,39 @@ func main() {
}
}

func runQuery(uri, database, username, password string) (result []string, err error) {
driver, err := neo4j.NewDriver(uri, neo4j.BasicAuth(username, password, ""))
func runQuery(uri, database, username, password string) (_ []string, err error) {
ctx := context.Background()
driver, err := neo4j.NewDriverWithContext(uri, neo4j.BasicAuth(username, password, ""))
if err != nil {
return nil, err
}
defer func() {err = handleClose(driver, err)}()
session := driver.NewSession(neo4j.SessionConfig{AccessMode: neo4j.AccessModeRead, DatabaseName: database})
defer func() {err = handleClose(session, err)}()
results, err := session.ReadTransaction(func(transaction neo4j.Transaction) (interface{}, error) {
result, err := transaction.Run(
`
MATCH (u:User {state: $state} )-[:WATCHED]->(m)-[:HAS]->(g:Genre)

RETURN g.name as genre, count(g) as freq
ORDER BY freq DESC
`, map[string]interface{}{
"state": "Texas",
})
defer func() { err = handleClose(ctx, driver, err) }()
query := " MATCH (u:User {state: $state} )-[:WATCHED]->(m)-[:HAS]->(g:Genre)

RETURN g.name as genre, count(g) as freq
ORDER BY freq DESC
params := map[string]any{"state": "Texas"}
result, err := neo4j.ExecuteQuery(ctx, driver, query, params,
neo4j.EagerResultTransformer,
neo4j.ExecuteQueryWithDatabase(database),
neo4j.ExecuteQueryWithReadersRouting())
if err != nil {
return nil, err
}
genres := make([]string, len(result.Records))
for i, record := range result.Records {
// this assumes all actors have names, hence ignoring the 2nd returned value
name, _, err := neo4j.GetRecordValue[string](record, "genre")
if err != nil {
return nil, err
}
var arr []string
for result.Next() {
value, found := result.Record().Get("genre")
if found {
arr = append(arr, value.(string))
}
}
if err = result.Err(); err != nil {
return nil, err
}
return arr, nil
})
if err != nil {
return nil, err
genres[i] = name
}
result = results.([]string)
return result, err
return genres, nil
}

func handleClose(closer io.Closer, previousError error) error {
err := closer.Close()
func handleClose(ctx context.Context, closer interface{ Close(context.Context) error }, previousError error) error {
err := closer.Close(ctx)
if err == nil {
return previousError
}
Expand Down
2 changes: 1 addition & 1 deletion code/javascript/example.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const neo4j = require('neo4j-driver');
const driver = neo4j.driver('neo4j://<HOST>:<BOLTPORT>',
neo4j.auth.basic('<USERNAME>', '<PASSWORD>'),
{/* encrypted: 'ENCRYPTION_OFF' */});
{});

const query =
`
Expand Down
24 changes: 11 additions & 13 deletions code/python/example.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
# pip3 install neo4j-driver
# pip3 install neo4j
# python3 example.py

from neo4j import GraphDatabase, basic_auth

driver = GraphDatabase.driver(
"neo4j://<HOST>:<BOLTPORT>",
auth=basic_auth("<USERNAME>", "<PASSWORD>"))

cypher_query = '''
MATCH (u:User {state: $state} )-[:WATCHED]->(m)-[:HAS]->(g:Genre)

RETURN g.name as genre, count(g) as freq
ORDER BY freq DESC
'''

with driver.session(database="neo4j") as session:
results = session.read_transaction(
lambda tx: tx.run(cypher_query,
state="Texas").data())
for record in results:
print(record['genre'])

driver.close()
with GraphDatabase.driver(
"neo4j://<HOST>:<BOLTPORT>",
auth=("<USERNAME>", "<PASSWORD>")
) as driver:
result = driver.execute_query(
cypher_query,
state="Texas",
database_="neo4j")
for record in result.records:
print(record['genre'])