0.4.7 • Published 4 years ago

fluent-neo4j v0.4.7

Weekly downloads
1
License
UNLICENCED
Repository
-
Last release
4 years ago

Fluent Neo4j

This package allows you to run any cypher query you like agains your Neo4j instance in a promise-style.

The results will be formatted for your convenience.

To build the query check out the API docs of fluent-cypher

Table of Contents

Usage

You'll need to set env params to connect to neo4j

export NEO4J_URL="bolt://localhost:7687"
export NEO4J_USER="neo4j"
export NEO4J_PASS="neo4j"

Now you can use the package on the server.

const Neo4jQuery = require('fluent-neo4j')
//or
import Neo4jQuery from 'fluent-neo4j'

constuctor(options)

var query = new Neo4jQuery()

See constructor options of fluent-cypher

Methods

All methods return a promise. So after any fetch method building the query is not possible anymore.

.fetch(extractAlias)

Returns the first row of results as an object and if specified accesses the alias of the row.

new Neo4jQuery()
	.match({$: 'myNode', name: 'Jhonny'})
	.return('myNode')
	.fetch()
	.then((rows) => {
		console.log(rows) // => [{myNode: {id: 123, name: 'Jhonny'}}]
	})
	.catch((err) => console.error(err))
new Neo4jQuery()
	.match({$: 'myNode', name: 'Jhonny'})
	.return('myNode')
	.fetch('myNode')
	.then((rows)=>{
		console.log(rows) // => [{id: 1234, name: 'Jhonny'}]
	})
	.catch((err) => console.error(err))

fetchOne(extractAlias)

Returns the first record, if specified the result will be brought top-level accessing the alias given.

new Neo4jQuery()
	.match({$: 'myNode', name: 'Jhonny'}, {$: 'someoneElse', name: 'Bo'}))
	.return('myNode', 'someoneElse')
	.fetchOne()
	.then(row => {
		console.log(row) // => {myNode: {id: 1234, name: 'Jhonny'}, someoneElse: {...}}
	})
	.catch((err) => console.error(err))
new Neo4jQuery()
	.match({$: 'myNode', name: 'Jhonny'}, {$: 'someoneElse', name: 'Bo'})
	.return('myNode', 'someoneElse')
	.fetchOne('myNode')
	.then(row => {
		console.log(row) // => {id: 1234, name: 'Jhonny'}
	})
	.catch((err) => console.error(err))

run()

Runs the native run method of the driver returning unformatted results.

Use this method if you don't care about the result as it skips parsing of the result object.

example: Get the query result as the driver returns it

new Neo4jQuery()
	.match({$: 'myNode'})
	.return()
	.run()
	.then(queryResult => {
		console.log(queryResult)
	// 	{ records:
  //  [ Record {
  //      keys: [Array],
  //      length: 1,
  //      _fields: [Array],
  //      _fieldLookup: [Object] },
  //    Record {
  //      keys: [Array],
  //      length: 1,
  //      _fields: [Array],
  //      _fieldLookup: [Object] },
  //    Record {
  //      keys: [Array],
  //      length: 1,
  //      _fields: [Array],
  //      _fieldLookup: [Object] } ],
  // summary:
  //  ResultSummary {
  //    statement:
  //     { text: 'MATCH (node {name:{name0}}) RETURN node as node ',
  //       parameters: [Object] },
  //    statementType: 'r',
  //    counters: StatementStatistics { _stats: [Object] },
  //    updateStatistics: StatementStatistics { _stats: [Object] },
  //    plan: false,
  //    profile: false,
  //    notifications: [],
  //    server:
  //     ServerInfo {
  //       address: 'hobby-necdejfcclhegbkeceejghal.dbs.graphenedb.com:24786',
  //       version: 'Neo4j/3.3.0' },
  //    resultConsumedAfter: Integer { low: 1, high: 0 },
  //    resultAvailableAfter: Integer { low: 1, high: 0 } } }
	})
	.catch((err) => console.error(err))

How to run tests

This will test against an online test instance

npm test

This will test against a local instance - you'll need to set env vars.

WARNING: Make sure you are using a test database as this adds and deletes data!

npm run test-local
0.4.7

4 years ago

0.4.6

4 years ago

0.4.5

4 years ago

0.4.4

5 years ago

0.4.3

6 years ago

0.4.2

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.5

6 years ago

0.3.4

6 years ago

0.3.3

6 years ago

0.2.3

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago