intelligent-intern / neo4j-bundle
Symfony bundle for Neo4j graph database integration
Installs: 37
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:intelligent-intern-bundle
Requires
- php: ^8.3
- ext-bcmath: *
- laudis/neo4j-php-client: 3.2.0
- symfony/dependency-injection: 7.2.*
- symfony/framework-bundle: 7.2.*
- symfony/http-client: 7.2.*
This package is auto-updated.
Last update: 2025-03-12 01:15:38 UTC
README
The intelligent-intern/neo4j-bundle
integrates Neo4j with the Intelligent Intern Core Framework, allowing seamless graph database functionality.
Installation
Install the bundle using Composer:
composer require intelligent-intern/neo4j-bundle
Configuration
Ensure the following secrets are set in vault:
NEO4J_URL=your_neo4j_url NEO4J_USERNAME=your_neo4j_username NEO4J_PASSWORD=your_neo4j_password
and to use the bundle set GRAPH_DB_TYPE to "neo4j".
Usage
Once the bundle is installed and configured, the Core framework will dynamically detect the Neo4j service via the graphdb.strategy
tag.
The service will be available via the GraphDBFactory
:
<?php namespace App\Controller; use App\Service\Api\GraphDBFactory; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Request; class GraphController extends AbstractController { public function __construct( private GraphDBFactory $graphDBFactory ) {} public function createNode(Request $request): JsonResponse { $properties = $request->get('properties', []); if (empty($properties)) { return new JsonResponse(['error' => 'Properties cannot be empty'], 400); } try { $graphDBService = $this->graphDBFactory->create(); $node = $graphDBService->createNode($properties); return new JsonResponse(['node' => $node]); } catch (\Exception $e) { return new JsonResponse(['error' => $e->getMessage()], 500); } } public function createEdge(Request $request): JsonResponse { $fromNodeId = $request->get('fromNodeId'); $toNodeId = $request->get('toNodeId'); $type = $request->get('type', 'RELATED'); $properties = $request->get('properties', []); if (empty($fromNodeId) || empty($toNodeId)) { return new JsonResponse(['error' => 'fromNodeId and toNodeId are required'], 400); } try { $graphDBService = $this->graphDBFactory->create(); $edge = $graphDBService->createEdge($fromNodeId, $toNodeId, $type, $properties); return new JsonResponse(['edge' => $edge]); } catch (\Exception $e) { return new JsonResponse(['error' => $e->getMessage()], 500); } } }
Extensibility
This bundle is specifically designed to integrate with intelligent-intern/core
. It leverages the dynamic service discovery mechanism to ensure seamless compatibility.
If you'd like to add additional strategies, simply create a similar bundle that implements the GraphDBServiceInterface
and tag its service with graphdb.strategy
.
Also reaching out to jschultz@php.net to get a contribution guide might be a good idea.
License
This bundle is open-sourced software licensed under the MIT license.