Questions tagged [property-graph]
25 questions
4
votes
1 answer
What kinds of use cases are ideal for SPARQL / RDF triple stores, but not property graphs?
I see that SPARQL / RDF are standards, which is cool. But what types of use cases would lead one to choose a triplestore over a property graph?

Kristian
- 21,204
- 19
- 101
- 176
3
votes
2 answers
Why aren't TripleStore implemented as Native Graph Store as Property-Graph Store are?
Sparql based store or put another way, TripleStore, are known to be less efficient than property graph store, on top of not being able to be distributed while maintaining performance as property graph.
I understand that there are a lot of things at…

MaatDeamon
- 9,532
- 9
- 60
- 127
2
votes
2 answers
Watch updates in redis graph
I've recently discovered that redis has a property graph model implementation called redis graph and it's amazing.
One thing that I really miss for my use-case though, is the ability to "watch" the data. In typical redis data structures I can enable…

Lorah Attkins
- 5,331
- 3
- 29
- 63
2
votes
1 answer
Litte expressivity of Property Graphs compared to RDF Graphs due to lack of reification?
Is there any way to represent this in a Property Graph:
"Peter likes Anna. This information was created by Dave. Dave is a Liar. The certainty of this information is 95%."
In a RDF Graph using Reification this could look like this:
There is no way…

Grapheneer
- 897
- 8
- 25
2
votes
2 answers
Is it possible to create a property graph in NetworKit?
For example, I would like to add some attributes to nodes and edges (say, some labels or any other additional info).
Is it possible to do that in NetworKit?
Thank you in advance!

elfinorr
- 189
- 3
- 12
2
votes
0 answers
Using GraphScale over neo4j LPG for reasoning
I recently read an article explaining how to get OWL like reasoning on an LPG store in neo4j using GraphScale. But I am very unclear on how to define OWL like rules on an LPG graph in the first place. Can some please explain it to me?
I am…

Kunal Kishore Singh
- 127
- 2
- 10
2
votes
2 answers
How to efficiently delete nodes which can be reached from another node without passing other nodes and only have 1 incoming relationship?
I'm using Property Graph and Cypher from Neo4j. As described in the title, I'm trying to delete a number of nodes which can be reached from another node without passing other nodes and only have 1 incoming relationship. Here is the example of this…

Triet Doan
- 11,455
- 8
- 36
- 69
2
votes
3 answers
Neo4j cypher query for linked list
I have the below graph. A league (l1) starts with LEVEL r1 and the NEXT levels are related using NEXT relationship as shown.
league-[:LEVEL]->r1-[:NEXT]->r2-[:NEXT]->r3-[:NEXT]->r4
What I am looking for is to find all the levels for a given league…

Aravind Yarram
- 78,777
- 46
- 231
- 327
1
vote
0 answers
Error while creating node using py2neo : keyword can't be an expression
from py2neo import Graph, Node, Relationship
l=["Vipul", "Vithal", "Yoga"]
hasage=["hasAge", "hasAge", "hasAge"]
age=[24,31,26]
g = Graph(password="Abc123")
tx = g.begin()
for item in l:
Vithal = Node("item", name=l[l.index(item)],…

Vipul Bhalla
- 11
- 2
1
vote
1 answer
Can a node have a property twice?
I would like to create a database with abbreviations for every word used in my company.
Can I define a various number of properties for the same property (as in RDF)?
Is it possible to use different data types?
for example like this:
:Word
Name:…

Thomas
- 35
- 3
1
vote
1 answer
How to design a graph database in this scenario?
here is my scenario. I have a pre-defined data type structure for books. Just take it as an example for the sake of simplicity. The structure looks like the image below. It's a Labeled Property Graph and the information is self-explained. This data…

Triet Doan
- 11,455
- 8
- 36
- 69
1
vote
1 answer
can property graph be transformed into a RDF dataset?
We know that neo4j and Titan use property graph as their data model, which is more complicate and flexible than RDF. However, my team is building a graph database named gStore which is based on RDF datasets.
gStore can not support N-Quads or…

bookug
- 11
- 3
1
vote
1 answer
Gremlin: how do I merge selected attributes of two objects encountered on a traversal path
Let us suppose I have apples which come from trees on various farms. So trees bear apples, and farms have trees. I want a list of apples which also contain a reference to the farm they come from.
g = new TinkerGraph();
// apples
a1 =…

CppNoob
- 2,322
- 1
- 24
- 35
1
vote
1 answer
Spark GraphX - How can I read from a JSON file in Spark and create a graph from the data?
I'm new to Spark and Scala, and I am trying to read a bunch of tweeter data from a JSON file and turn that into a graph where a vertex represents a tweet and the edge connects to tweets which are a re-tweet of the original posted item.
So far I…

Adelina Balasa
- 91
- 1
- 6
1
vote
1 answer
Property graph (Neo4j) design: Single node with multiple relations or new nodes for each event occurence?
Let us say I've two Leagues L1 and L2. Each league can have multiple rounds like Playoffs, Quarterfinals, Semifinals and Finals. Moreover, I also need to represent the happens_after fact like Quarterfinals happens after Playoffs, Semifinals happens…

Aravind Yarram
- 78,777
- 46
- 231
- 327