0x90
0x90

Reputation: 41032

what is the meaning of nodes and edges in dbpedia and neo4j?

There is this: link. My problem is that I don't understand what the edges and the nodes represent in Neo4j?

Can anyone explain to me that issue please?

Upvotes: 0

Views: 185

Answers (1)

Snowball
Snowball

Reputation: 11696

Neo4j is a graph database, so it models graphs. Here's a picture of a graph:

graph

The circles with numbers are the nodes. In Neo4j, they can contain any values, not just numbers. The edges are the lines between them (again, Neo4j allows arbitrary values on them). The edges represent relationships between the nodes.

In the case of DBpedia, the nodes are probably the articles and the edges are probably the links between articles. I've never heard of DBpedia before now, though, so I'm not sure on that.

Upvotes: 2

Related Questions