Reputation: 14318
I would like to implement a simple web application in apache(php or python) with an open source Graph database
.
I would like also to query the "Graph database" using just javascript
(client). It will be possible?
Which Graph database do you suggest me to use for this (the most simple)?
Upvotes: 0
Views: 718
Reputation: 34
For a simple and beginner friendly option, I suggest using Neo4j as the graph database. Neo4j is an open source, highly popular graph database known for its ease of use and flexibility. It has excellent support for various programming languages, including PHP and Python, making it a suitable choice for integrating with Apache web servers.
With Neo4j's JavaScript driver (such as neo4j-driver), you can easily query the graph database directly from the client-side JavaScript code. This enables you to perform real-time queries and display graph data on your web application without the need for server-side intervention.
Upvotes: 0
Reputation: 1796
I would heavily recommend using ArangoDB. They offer an official and well supported JS driver and their query language (AQL) is both semantically more pleasant and productive than alternatives such as gremlin and Neo4J's Cypher.
Upvotes: 0
Reputation: 2141
Neo4J has a REST API. That should allow you to interact with the database from most environments.
Upvotes: 1