RDF Graph example (Query language: SPARQL)
As a framework for representing the Web, Resource Description Framework (RDF) captures structure using a triple, the basic unit in RDF. A triple is a statement with three elements: two nodes connected by an edge (also known as a relationship). Each triple is identified by a Uniform Resource Identifier (URI) as subject-predicate-object:
– The subject is a resource (node) in the graph;
– The predicate represents an edge (relationship)
– The object is another node or a literal value.
More information:
https://rdf4j.org/documentation/tutorials/getting-started/
Property Graph example (Query Language: Cypher)
Information is organized as nodes, relationships, and properties in a property graph. Nodes are tagged with one or more labels, identifying their role in the network. Nodes can also store any number of properties as key-value pairs. Relationships provide directed, named connections between two nodes. Relationships always have a direction, a type, a start node, and an end node, and they can have properties, just like nodes. Although relationships are always directed, they can be navigated efficiently in either direction.
What is the difference between SPARQL and Cypher Query Language?
– SPARQL is the query language for accessing data in the Resource description Framework (RDF) GRAPH database.
– Cypher is the corresponding language for the data represented in property GRAPH database
More information:
https://neo4j.com/blog/rdf-vs-property-graphs-knowledge-graphs/