Define a Schema
An optional feature that allows you to define a schema for your Graph
Last updated
Was this helpful?
An optional feature that allows you to define a schema for your Graph
Last updated
Was this helpful?
Schemas define the structure of your Graph data, e.g what nodes and edges are valid.Generally speaking, TinkerPop, which is used by Gremlify as the Graph database engine, is schema less. But if you work, or plan to work with Graphs such as JanusGraph or OrientDB you might find it useful (or if you are just curious about schemas!).
Let's for instance take the following simple schema as an example:
That basically means, that a person can own a pet, and be friends with another person, but any other relation is invalid.
To define a schema, click on the "Schema" tab on the side menu of the Graph Builder panel:
The Schema builder is an interactive interface, that requires both mouse and keyboard interactions.‌
Below is a list of all available keyboard & mouse combinations:
Action
Combination
Create Vertex
Shift + Left Mouse click (somewhere)
Create Edge
Shift + Drag mouse between 2 Vertices
Delete Vertex
Select Vertex + Backspace
Delete Edge
Select Edge + Backspace
Let's create the schema from above. We'll start by creating the person node (hit shift + mouse).
The following dialog will open up:
Let's fill it up with the following properties, and then hit save:
We can now repeat the same process with the pet node, but with a slight difference of the properties:
Our schema should look as follows:
Now let's create the owns relationship by holding shift and dragging the mouse into pet. Similarly to the node creation, a dialog will open. The results:
Now, to create the friendOf relation, we'll hold shift and drag the moue from person to itself:
Our schema is ready for work! let's try it out by moving to the Graph tab, and create a node. The following dialog opens:
As you can see, any property we defined in our schema is labeled with it's corresponding type. That implies that trying to fill it with invalid values will throw an error:
In addition, and in contrary to the schema-less Graph, you can only create nodes and edges with the labels defined in the schema. Use the label dropdown for that matter.
Let's create a few nodes:
Our graph is not complete without some relationships. Assuming that node #18 owns pet #13, and nodes #18 and #22 are friends. Our graph will look like this:
But what happens if we try to connect the pet node with a person node with the owns relationship? (hopefully, this kind of scenario will not happen in the future!):
It fails.
But what if we tried to do that via the query editor?
The query will fail.
Assuming you already have a Gremlify Graph working, and you wish to attach a Schema to it:
When we click on the Schema tab, a dialog pops up:
By clicking yes, gremlify will take any node and edge in your graph, and create a schema out of them:
For any two given labeled entities, the algorithm will make a union of their properties. Ambiguous types will be handled arbitrarily.
For example, two person nodes (we'll call them X and Y) with the following properties:
property
X
Y
label
person
person
name
john
emma
age
26
34
isMarried
true
-
The resulting schema node will be:
property
type/value
label
person
name
string
age
number
isMarried
boolean
When altering an existing Schema, two main scenarios might take place:
That means that the change has no actual effect on our existing graph. Nothing special happens in this scenario.
Let's take a look at the following Schema from the previous example:
Now if we decide to remove the knows edge from our schema. Immediately a dialog opens up
:
TL;DR. our Graph contains at least one edge with the knows label. If we hit yes, Gremlify will remove any edge in the Graph that is labeled with knows, and the resulting Graph will look as follows:
The same goes for any node or property, including a scenario where a property type changes.