1

git 项目地址 church/neo4j

介绍

基于PHP的neo4j库,源文档链接地址 neo4j http api

安装环境需求

  • PHP >= 7.4

安装

composer require church/neo4j

用法

初始化

$app = new \Church\Neo4j\Application("http://127.0.0.1:7474", "neo4j", "neo4j");
$app->discovery();

查询语句

$statement = (new \Church\Neo4j\Statement('CREATE (n $props) RETURN n)'))->params([
    'props' => [
        'name' => 'test'
    ]   
]);

开启事务

$statements = \Church\Neo4j\StatementRepository::add($statement);
$transaction = $app->transaction($statements);
$transaction->begin();

提交事务

$result = $transaction->commit();

if ($result->getRawResponse()->getStatusCode() == 200) {
    print_r($result->getData());
}

延长事务有效期

default expiry time is 60 seconds.
$transaction->keepAlive(); 

回滚

$transaction->rollback();

开启和提交事务

$result = $transaction->beginAndCommit();
print_r($result);

单元测试

composer install
./vendor/bin/phpunit

协议

MIT

church
3.6k 声望67 粉丝