@netwerk-digitaal-erfgoed/network-of-terms-catalog 9.17.1 → 9.17.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -17,18 +17,17 @@ WHERE {
|
|
|
17
17
|
|
|
18
18
|
FILTER(CONTAINS(LCASE(?prefLabel), LCASE(?query)))
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
# }
|
|
20
|
+
OPTIONAL {
|
|
21
|
+
?uri skos:broader ?broader_uri .
|
|
22
|
+
?broader_uri skos:prefLabel ?broader_prefLabel .
|
|
23
|
+
}
|
|
24
|
+
OPTIONAL {
|
|
25
|
+
?uri skos:narrower ?narrower_uri .
|
|
26
|
+
?narrower_uri skos:prefLabel ?narrower_prefLabel .
|
|
27
|
+
}
|
|
28
|
+
OPTIONAL {
|
|
29
|
+
?uri skos:related ?related_uri .
|
|
30
|
+
?related_uri skos:prefLabel ?related_prefLabel .
|
|
31
|
+
}
|
|
33
32
|
}
|
|
34
33
|
LIMIT 1000
|