|
@@ -21,6 +21,11 @@ WHERE {
|
|
|
?element a ?more_concrete_type .
|
|
|
FILTER(?more_concrete_type != ?type)
|
|
|
}
|
|
|
+ NOT EXISTS {
|
|
|
+ ?more_concrete_link_type rdfs:subClassOf <${link_type}> .
|
|
|
+ <${iri}> a ?more_concrete_link_type .
|
|
|
+ FILTER(?more_concrete_link_type != <${link_type}>)
|
|
|
+ }
|
|
|
}`;
|
|
|
|
|
|
// Query that gets the IRI and most-concrete-type of a given drawio cell.
|