Is there such a thing as a schema in a graph database? For example, can you specify which types of node can have relationships with which other types of node?
What does such a schema look like?
|
Is there such a thing as a schema in a graph database? For example, can you specify which types of node can have relationships with which other types of node? What does such a schema look like? |
|||
|
|
Graph databases differ a lot in this area, just like das_weezul says. In the general case I think graph databases which are closer to object databases (OODB) also have built-in schema support. One nice thing about graph databases is that they're very well suited for mixing data and metadata. So a common approach for both dealing with schema support and security is to store this kind of metadata in a (sometimes hidden) part of the very same graph. When it comes to Neo4j - where I'm on the team - there's currently at least two approaches in use for defining schemas:
You'll find some more reading on this topic over at myNoSQL. |
|||
|
|
|
A graph database will always have a rudimentary schema consisting of (at least) Vertex and Edge objects, where an Edge can contain data about a particular relationship. The degree to which you can add to this schema varies widely across implementations. You may be able to customize the schema by inheriting from Edge and/or Vertex objects,for instance. If the graph database uses an underlying RDBMS or ODBMS then you may have access to more powerful schema creation and manipulation capabilities. |
|||
|
|