Closed moar55 closed 3 years ago
Please check the docs https://oss.redislabs.com/redisgraph/commands/#graphquery.
query := `MATCH (p:person)-[v:visited]->(c:country)
RETURN p.name, p.age, c.name`
// result is a QueryResult struct containing the query's generated records and statistics.
result, _ := graph.Query(query)
okay thanks :)
How can I access the *graph struct without having to create a new one, but rather an existing one?