A graph database uses graph structures with nodes, edges, and properties to represent and store information.

learn more… | top users | synonyms

0
votes
0answers
19 views

using multiple match clauses doesn't return any result in neo4j cypher query

I am executing the following two queries and i am getting some result. First query START person=node:NODE_TYPE(NODE_TYPE='PERSON') MATCH ...
0
votes
1answer
11 views

How to deal with null values for some properties with Neo4j batch-import?

I'm trying to import SQL data into my Neo4j graph database with Michael Hunger's batch-import which actually works very well. To import more than one node type I do it like this: How to do an initial ...
0
votes
1answer
23 views

What is link graph database

While checking documentation of some of the open source web crawlers like Apache Nutch, Apache Tika; I frequently encountered "link graph database" term. Can anyone summarize about it?
-1
votes
1answer
33 views

Fine grained (miliseconds) temporal indexes in neo4j [closed]

What are the best practices for modeling fine grained timelines in neo4j? If I were to use miliseconds as the grain in the pattern described here and here would it prove somehow problematic and ...
0
votes
1answer
70 views

Count relationship pairs in Neo4j

I'm starting dealing with Neo4j so I'm not really proficient on this topic. In figure below I have 2-mode (bipartite) graph where green node presents "document" and red node presents "term" which ...
0
votes
1answer
38 views

Exception importing data into neo4j using batch-import

I am running neo-4j 1.8.2 on a remote unix box. I am using this jar (https://github.com/jexp/batch-import/downloads). nodes.csv is same as given in example: name age works_on Michael 37 neo4j ...
0
votes
1answer
33 views

neo4j cypher: multiple queries using WITH keyword

I'm trying to run a query which has two parts start cat=node(21) match cat-[:HAS_KEYWORD]->(word)-[:FOUND_IN]->doc return doc this query works fine and return the results start cat=node(21) ...
0
votes
0answers
20 views

How to connect RapidMiner and Neo4j?

Does anyone have any experience in connecting RapidMiner to neo4j? Im particularly interested in using SVM or other vector based clasifiers on rows extracted from adjectancy matrices produced from ...
0
votes
1answer
38 views

How to use cypher to create relationship between two nodes given their attributes in Neo4j

I would like to do something like this START n=node(*), m=node(*) where has(n.userid) and has(m.userid) and n.userid='0' and m.userid='3' create (n)-[FRIENDSHIP {status:2}]->(m) ; However, ...
0
votes
3answers
53 views

Is it possible to have different types of nodes in a neo4j graph database

for example, if I have two nodes created in a transaction node1 = db.graphDb.createNode(); node2 = db.graphDb.createNode(); // index user id node1.setProperty("abc", "fkdjasflasdjlf"); ...
0
votes
1answer
37 views

Using Neo4j for multiple graphs

I am working on an application that will store data(graphs) from multiple clients. Each client will have 4 graphs. and will able to query each graph independly. each graph have one or two indecies, ...
0
votes
1answer
26 views

How to store and retrieve neo4j index

I am working on a neo4j-related project and I don't quite understand the "index" in neo4j. In a relational database, we have tables and indexes on persistent disk. I am assuming it is the same for ...
0
votes
1answer
45 views

neo4j stop traversal on condition (cypher)

I'm just starting out so pardon me if this is a stupid question but I was wondering how to stop traversal of a tree on a node property value. For instance. If you have a tree type graph with nodes ...
0
votes
2answers
39 views

How to create relationships in Orient-DB?

I having a stuck with relationships in Orient-DB. My problem is i dont know how to create relationships in orient-DB? I was read document and see it have command CREATE LINK. but i dont know how do ...
1
vote
0answers
66 views

What is the right way to find an edge between two vertices?

Using tinkerpop blueprints API, what is the best way to find if an edge exists between two vertices? I would like to avoid vertex.getEdges() an iterate until find the right one. E.g.: Check if v1 is ...
-1
votes
0answers
33 views

Comparison between key–value store and graph databases

I cannot make a clear idea of the possible usage of key-value databases compared to others. At what point do more complex databases come to make advantage of their more focused structure (ie: will ...
0
votes
1answer
34 views

Gremlin query like SQL IN operator?

Im stuck with gremlin. I have emails like array and I need to make query to find all user with those emails. In SQL I have SELECT email(s) FROM user WHERE email IN (xxx, yyy...) How can I do ...
0
votes
2answers
30 views

cannot reproduce bulbs/py2neo in python to create edges (relationships)

I am trying to sequentially insert vertices and edges in neo4j using python. The existing nodes aren't recognised as such when I add edges. Whether I use py2neo or bulbs I got a similar error message. ...
2
votes
1answer
87 views

Get visited edges in OrientDB's shortestPath()

I am new to OrientDB and I want to use the new shortestPath() method to get the edges that are between two vertices. What I do is: OSQLSynchQuery<T> sql = new OSQLSynchQuery<T>("select ...
0
votes
1answer
62 views

CypherQuery returns empty result in JavaEmbedded, but correct result in Neoclipse

I have a strange problem with a cypher query. The query works fine in Neoclipse and returns the correct result. But in java embedded mode the result is empty. I can't figure out the problem. Is there ...
1
vote
1answer
39 views

Why is an RDBMS bad to store a considerably big graph?

I started using a graph database to store a big graph that im generating. But im not convinced as to why to use a graph database to do my job, and why not do what i want with a conventional RDBMS. My ...
1
vote
1answer
62 views

How can I get Vertices with relations and related Vertices in Neo4j 1.9RC1 via Gremlin

Neo4j will support tree pattern in 2.x versions.(We could not use tree function) We are using 1.9RC1. I need to get Users with Followers and Friends. public class User { public long Id { get; ...
1
vote
1answer
63 views

Adding labels to neo4j graph 2.0M01 with Cypher

Trying out the latest Neo4j 2.0 M01. I also Downloaded the full cinecast graph.db and configured it to work with 2.0 store according to the great video tutorial by Michael, see here: ...
0
votes
1answer
45 views

NEO4J: Is it possible to use regular expressions in Relationshiptypes with Cypher?

is it possible to use regex in relationshiptypes. In some cases my application generates dynamically RelTyps. So when it comes to execute a cyhper query, the application only knows a specific part of ...
-2
votes
0answers
44 views

Open source graph database along with php [closed]

I will be doing a project in php which will need a graph database. What are the open source options other than neo4j?
0
votes
2answers
107 views

Executing Neo4j Cypher Query (by Java) Using existing Dataset

I directly made a neo4j dataset by using neo4j console ("localhost:7474") (as you knew "graph.db") I wanna execute Cypher Query (by Java) Using this data. I already saw the example from ...
0
votes
1answer
32 views

Hints on designing a scheme for page view logs using Neo4j?

I'm trying to design a scheme for event logs, which record page view flow on webpages, using Neo4j. I'm interested in finding page view flows to a certain collection of pages (URLs). I'm thinking ...
2
votes
1answer
46 views

Can you use numbers for relationship types in Neo4j?

I've created some nodes, and relationships between them with numerical types (eg '3'). Creation works fine, but now I'm having trouble selecting them with Cypher. Since it allows me to create them, ...
0
votes
1answer
74 views

Indexing relationships in Neo4j using Scala

Say that there is a relationship between 2 nodes as below start --> "follows" --> end I want to create an index named "Relations" and add the above relation to the index. How do I do that in ...
1
vote
2answers
100 views

Summing data up a tree data structure (in a graph database)

I have a tree data structure in which data is entered at the leaf nodes. What I want to do is sum this data up the tree e.g. for any node in the tree, sum up all the data underneath it. Are there any ...
1
vote
1answer
76 views

Optimize Neo4j Cypher path finding with limited paths in an undirected graph

As a follow-up from the question "Neo4j Cypher path finding slow in undirected graph". Michael Hunger and Wes Freeman kindly helped but I failed to adapt the techniques learned to path finding queries ...
0
votes
3answers
198 views

Integrating mongodb with neo4j, is there any API that will link them?

I am working on a recommendation engine. The user data is collected (Their friendship, locations, likes,education,...) and is already stored in mongodb. I need to recommend relevant products to these ...
0
votes
2answers
97 views

Neo4j Design: Property vs “Node & Relationship”

I have a node type that has a string property that will have the same value really often. Etc. Millions of nodes with only 5 options of that string value. I will be doing searches by that property. ...
1
vote
1answer
141 views

Loading a Neo4j subgraph into Networkx

I have been dealing with Neo4j through python's Bulbflow and now need a way to save/export subgraphs. I have seen Java and even Ruby approaches for doing this, however a simple Python approach seems ...
1
vote
1answer
83 views

Introduction to object databases

I'm trying to understand the idea of noSQL databases, to be more precise, the concept behind neo4j graph database. I have experience with SQL databases (MySQL, MS SQL), but the limitations of managing ...
0
votes
0answers
23 views

neo4j: java: can we force GraphDB NOT TO HAVE nodes with duplicate Node_Key? If yes how can we do it? [duplicate]

A sample code and situation related to this is discussed in following question: neo4j: java: error in indexHits.getSingle() due to multiple nodes returned for given search query I'm creating a ...
0
votes
0answers
98 views

Bidirectional Relationships in Neo4j.rb

I'm developing a ruby on rails app (v 3.2.11) using the neo4j.rb gem. I'm implementing a comments module that will allow comments to be placed on any type of model. I'm trying to figure out ...
2
votes
3answers
141 views

Neo4j and Cluster Analysys

I'm developing a web application that will heavily depend on its ability to make suggestions on items basing on users with similar preferences. A friend of mine told me that what I'm looking for - ...
1
vote
2answers
160 views

Select a node by name in NEO4J in Java

I am working in NEO4J embedded in Java. Say there is a node named NODE_abc and it has a few properties. I want to select the node so that i can get the properties using getProperty(). I want to ...
4
votes
1answer
109 views

Category design in Neo4j, root node relationships vs relationships to indexed nodes

I would like to represent millions of products that belong to one or more of dozens of categories. I'm contemplating a few approaches: Indexed Category Nodes - Create nodes for each category and ...
0
votes
1answer
56 views

Change management for graph databases?

I've been recently exposed to the world of graph databases. Its quite an interesting paradigm shift for an old relational dog like me. Also quite recently, i've been tinkering with liquibase and ...
0
votes
1answer
78 views

Importing the datasets from the Book “Graph databases”

Hopefully I am posting this question at the right place. I am reading the book "Graph Databases", 1 by Ian Robinson's early edition. Is there anyway to import the graphs from the book, so I could work ...
0
votes
3answers
179 views

Graph Databases vs Relational Database Time and Space Complexity

What's the time complexity for transversals for graph and relational databases?
-2
votes
1answer
43 views

how should I start working with neo4j? [closed]

I am working with graph database and I want to start with neo4j. but i don't know how to start. which editor I should use for it? (ex. netbeans)
1
vote
1answer
72 views

Thinkaurelius Titan configuring BerkeleyDB

I am trying to created a Thinkaurelius titan datastore using: TitanGraph graph = TitanFactory.open("/tmp/graph") The documentation can be found at ...
0
votes
1answer
73 views

Neo4j: How to lock the entire database

In mysql, you can lock the entire database by issuing: FLUSH TABLES WITH READ LOCK; To unlock a mysql database, issue the following: UNLOCK TABLES; Are there two such commands for neo4j (lock and ...
0
votes
2answers
154 views

OrientDb select property together with flatten function

In an OrientDb graph database, I'm trying to determine some properties for pairs of vertices. To simplify it, i'm first trying to get some information about Vertex, Edge pairs: select label, ...
1
vote
1answer
95 views

How does neo4j perform in time and space complexity for given type of nodes, relationships and queries?

Consider I'm going to have following things in my graph: 100 Million nodes, More than 1 Billion connections/relationships Node properties: around 10 properties, mix of int, doubles, strings, ...
0
votes
1answer
313 views

neo4j: Adding multiple properties to Nodes and RelationshipTypes in neo4j graphDB

I want to build a social network graph from Facebook data in neo4j (java). I'm trying to search for relevant examples to understand these concepts but still unable to get any of those specific kinds. ...
1
vote
1answer
126 views

Graph database embedded on iOS

What options exist for running a graph database embedded on iOS? Given the apparent lack of options would it be best to try to manage the DB in sqlite and just keep the database size small?

1 2 3 4 5