pgschema 0.2.14

Prototype for PG-SChema with property constraints
1
2
3
4
5
6
7
8
9
10
11
CREATE NODE TYPE ( PersonType : Person {
    name: STRING,
    OPTIONAL age: INTEGER
}) ;
CREATE NODE TYPE ( StudentType : Person & Student {
    name: STRING,
    OPTIONAL age: INTEGER
}) ;
CREATE NODE TYPE ( CourseType: Course {
    name: STRING
})