query-b0b59aaece163838e31dee67b893b4ff
This SPARQL query provides some results but it's slow because it has to scan all labels:
Use at
- https://query.wikidata.org/sparql
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT * WHERE {
?item rdfs:label ?label .
FILTER( LANG( ?label ) = 'hy' ) .
#FILTER( STRENDS( ?label, ')' ) ) .
FILTER( CONTAINS( ?label, ' (' ) ) .
} LIMIT 100
Query found at
- https://www.wikidata.org/w/index.php?title=Topic:Vt261wdbe1bmjo6q&topic_showPostId=vta3tbppf00p3r3s#flow-post-vta3tbppf00p3r3s
- https://www.wikidata.org/wiki/Topic:Vt261wdbe1bmjo6q
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?label"):::projected
f0[["contains(?label,' (')"]]
f0 --> v1
f1[["?label = 'hy'"]]
f1 --> v1
v2 --"rdfs:label"--> v1