query-42d34e28efc0ac1aed27369e42f35fd4
Scholarly articles with titels in square bracketsCurrently are large number of scholary articles exist, where the item label is [wrapped in square brackets]:
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?article (LANG(?label) AS ?lang) ?label WHERE {
?article wdt:P31 wd:Q13442814;
rdfs:label ?label.
FILTER((STRSTARTS(?label, "[")) && (STRENDS(?label, "]")))
}
LIMIT 10000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?label"):::projected
v3("?lang")
c4(["wd:Q13442814"]):::iri
f0[["starts-with(?label,'#91;')ends-with(?label,'#93;')"]]
f0 --> v1
v2 --"wdt:P31"--> c4
v2 --"rdfs:label"--> v1
bind1[/"?label"/]
v1 --o bind1
bind1 --as--o v3