A graph database uses graph structures with nodes, edges, and properties to represent and store information.
What is the difference between graph-based databases (http://neo4j.org/) and object-oriented databases (http://www.db4o.com/)?
database db4o neo4j graph-databases object-oriented-databaseIn Cypher in Neo4J, given two nodes, if there's no relationship between them, I'd like to create a relationship (…
neo4j graph-databases cypherI do have following database structure. users -> comment -> products a. users and products are the vertexes …
sql orientdb graph-databasesI am new to Neo4J and I am looking to create a new relationship between an existing node and …
neo4j cypher graph-databasesUsing Match and Where can delete a relationship by ID. Match ()-[r]-() Where ID(r)=1 Delete r Is …
neo4j nosql cypher graph-databasesI have an application that stores relationship information in a MySQL table (contact_id, other_contact_id, strength, recorded_at). …
graph neo4j graph-databasesI am implementing a sinatra/rails based web portal that might eventually have few many:many relationships between tables/models. …
postgresql web-applications nosql neo4j graph-databasesThere are triplestores (semantic databases), and there are general-purpose graph databases. Both are based on the similar concepts of linking …
graph neo4j semantics graph-databases triplestoreJust came across FlockDB graph database. Details at github /flockDB. Twitter claims it uses FlockDB for the following: Twitter runs …
graph-databases flockdbI am using Neo4j CE 3.1.1 and I have a relationship WRITES between authors and books. I want to find …
neo4j cypher graph-databases