Usage
Once the AgensGraph client is installed, you can start using it to connect to your database, run Cypher queries, and interact with graph data. The following examples demonstrate basic setup and typical operations for working with vertices, edges, and paths in AgensGraph.
This section will guide you through initializing the client, performing queries, and handling results in Node.js.
Connection
To connect to AgensGraph via node-js, one can connect via environment variables, programatically, or using a connection URI.
Connecting programmatically can be done by passing an object with config values to your AgensGraph client and using client.connect() to establish a connection:
var ag = require('@skaiworldwide/ag-driver');
var config = {
user: 'username',
password: 'password',
database: 'database name of agensgraph',
host: '127.0.0.1',
port: 5432
};
const client = new ag.Client(config);
client.connect();
client.end();
Use client.end() to terminate the connection to the database. Calling client.end() without a callback function will return a promise.
Queries
To retrieve data from AgensGraph, use the query() API function to query the database. There are multiple ways to send queries, including passing text directly, using parameters, passing in objects, and using prepared statements. The following examples illustrate the different possible methods of querying.
Users can retrieve Cypher data by passing text directly to client.query():
var ag = require('@skaiworldwide/ag-driver');
const client = new ag.Client(Config);
client.connect();
client.query('SET graph_path = gpt'); //set graph path to gpt
client.query("MATCH (a:person)-[r:knows]->(b:person) WHERE b.name = 'Adam' RETURN a,r,b;", function (err, res) {
if (err) {
throw err;
} else {
console.log(res.rows);
}
});
client.end();
Users can also send parameterized queries:
const text = "MATCH (a:person)-[:knows]->(b:person) WHERE b.name = $1 RETURN a;"
const values = ['Adam'];
client.connect();
client.query('SET graph_path = gpt'); //set graph path to gpt
client.query(text, values, function (err, res) {
if (err) {
throw err;
} else {
console.log(res.rows);
}
});
Passing a config object:
const query = {
text: "MATCH (a:person)-[:knows]->(b:person) WHERE b.name = $1 RETURN a;",
values: ['Adam']
}
client.connect();
client.query('SET graph_path = gpt'); //set graph path to gpt
client.query(query, function (err, res) {
if (err) {
throw err;
} else {
console.log(res.rows);
}
});
Users can also use named prepared statements. Using prepared statements allows query execution plans to be cached on the server on a per connection statement. Once a query name is sent to the server, it will be parsed and executed. On subsequent sends the query will skip the parse request and instead send the name of the query:
const query = {
name: 'fetch-data',
text: "MATCH(n) WHERE n.name = 'Eve' RETURN n"
}
client.query(query, (err, res) => {
if (err) {
throw err;
} else {
console.log(res.rows);
}
});
Creating Data
To create data in AgensGraph, the query() API function is again used to query the database. Below is an example of creating Cypher data by passing text directly to client.query():
var ag = require('@skaiworldwide/ag-driver');
const client = new ag.Client(Config);
client.connect();
client.query('CREATE GRAPH gpt');
client.query('SET graph_path = gpt');
client.query("CREATE (a:person {name:'Alice'})-[r:knows {from: 'school'}]->(b:person {name: 'Bob'}) RETURN a,r,b", function (err, res) {
if (err) {
throw err;
} else {
a = res.rows[0].a;
r = res.rows[0].r;
b = res.rows[0].b;
console.log(a.label);
console.log(a.id);
console.log(a.props.name);
console.log(r.label);
console.log(r.id);
console.log(r.startVertexId);
console.log(r.endVertexID);
console.log(r.props.from);
console.log(b.label);
console.log(b.id);
console.log(b.props.name);
}
});
Graph Data Types
The following is a brief explanation detailing the different datatypes handled by agensgraph-nodejs extension.
Class Function |
Description |
Properties |
---|---|---|
|
Corresponds to the |
oid, id |
|
Corresponds to |
label, id, props |
|
Corresponds to |
label, id, start, end, props |
|
Corresponds to |
vertices, edges, start, end, len |