Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xp-forge/neo4j
Neo4J connectivity for XP Framework
https://github.com/xp-forge/neo4j
neo4j php xp-framework
Last synced: 27 days ago
JSON representation
Neo4J connectivity for XP Framework
- Host: GitHub
- URL: https://github.com/xp-forge/neo4j
- Owner: xp-forge
- Created: 2017-09-30T12:15:42.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-24T12:36:09.000Z (10 months ago)
- Last Synced: 2024-11-13T21:47:56.791Z (2 months ago)
- Topics: neo4j, php, xp-framework
- Language: PHP
- Size: 75.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
Awesome Lists containing this project
README
Neo4J connectivity
==================[![Build status on GitHub](https://github.com/xp-forge/neo4j/workflows/Tests/badge.svg)](https://github.com/xp-forge/neo4j/actions)
[![XP Framework Module](https://raw.githubusercontent.com/xp-framework/web/master/static/xp-framework-badge.png)](https://github.com/xp-framework/core)
[![BSD Licence](https://raw.githubusercontent.com/xp-framework/web/master/static/licence-bsd.png)](https://github.com/xp-framework/core/blob/master/LICENCE.md)
[![Requires PHP 7.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-7_0plus.svg)](http://php.net/)
[![Supports PHP 8.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-8_0plus.svg)](http://php.net/)
[![Latest Stable Version](https://poser.pugx.org/xp-forge/neo4j/version.png)](https://packagist.org/packages/xp-forge/neo4j)This library implements Neo4J connectivity via its REST API.
Examples
--------
Running a query can be done via `open()` (which yields one record at a time) or `query()` (which collects the results in an array):```php
use com\neo4j\Graph;
use util\cmd\Console;$g= new Graph('http://user:[email protected]:7474/db/data');
$q= $g->open('MATCH (t:Topic) RETURN t.name, t.canonical');
foreach ($q as $record) {
Console::writeLine('#', $record['t.canonical'], ': ', $record['t.name']);
}
```To retrieve single results (or *NULL* if nothing is found), use `fetch()`:
```php
if ($topic= $g->fetch('MATCH (t:Topic{id:%s}) RETURN t', $id)) {
Console::writeLine('Found topic ', $topic);
}
```Formatting parameters uses *printf*-like format tokens. These will take care of proper escaping and type casting:
```php
use com\neo4j\Graph;
use util\cmd\Console;$g= new Graph('http://user:[email protected]:7474/db/data');
$g->query('CREATE (p:Person) SET t.name = %s, t.id = %d', $name, $id);
```Batch statements can be executed via the `execute()` method.
Format characters
-----------------* `%s`: Format a string
* `%d`: Format a decimal number
* `%f`: Format a floating point numer
* `%b`: Format a boolean
* `%v`: Copy value into parameter
* `%l`: Copy label into query
* `%c`: Copy literal into query
* `%%`: A literal percent signPositional parameters (starting at 1) may be used, e.g. `%2$s`.