forked from neo4j-contrib/neomodel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_diagram.puml
22 lines (22 loc) · 877 Bytes
/
model_diagram.puml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@startuml
digraph G {
node [shape=record];
Patent [label="Patent|{}}"];
Patent -> Inventor [label="has_inventor: RelationshipTo"];
Patent -> Applicant [label="has_applicant: RelationshipTo"];
Patent -> CPC [label="has_cpc: RelationshipTo"];
Patent -> Description [label="has_description: RelationshipTo"];
Patent -> Abstract [label="has_abstract: RelationshipTo"];
Patent -> Patent [label="simple_family: RelationshipTo"];
Patent -> Patent [label="extended_family: RelationshipTo"];
Patent -> Owner [label="has_owner: RelationshipTo"];
Patent -> Claim [label="has_claim: RelationshipTo"];
Claim [label="Claim|{}}"];
Inventor [label="Inventor|{}}"];
Applicant [label="Applicant|{}}"];
Owner [label="Owner|{}}"];
CPC [label="CPC|{}}"];
IPCR [label="IPCR|{}}"];
Description [label="Description|{}}"];
Abstract [label="Abstract|{}}"];
}@enduml