Skip to content

Commit

Permalink
fix: Filter by skos:Concept in Poolparty sources (#1459)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeboer authored Nov 8, 2024
1 parent 9f5eb6b commit f2a27ae
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ CONSTRUCT {
?exactMatch_uri skos:prefLabel ?exactMatch_prefLabel .
}
WHERE {
?uri ?predicate ?label .
?uri a skos:Concept ;
?predicate ?label .
VALUES ?predicate { skos:prefLabel skos:altLabel }
FILTER(LANG(?label) = "nl")
FILTER(CONTAINS(LCASE(?label), LCASE(?query)))
Expand Down

0 comments on commit f2a27ae

Please sign in to comment.