query-84db68ef3d0c0d3bb6e12737c0e14e93
日本国内の図書館及びその下位クラスに分類されている項目のうちラベルに「文庫」を含むもの
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 DISTINCT (?library AS ?entity) ?label ?isil ?ndl_auth ?postcode
WHERE {
?library wdt:P31/wdt:P279* wd:Q7075.
?library wdt:P17 wd:Q17.
?library rdfs:label ?label.
OPTIONAL { ?library wdt:P791 ?isil. }
OPTIONAL { ?library wdt:P349 ?ndl_auth. }
OPTIONAL { ?library wdt:P281 ?postcode. }
FILTER(LANG(?label) = "ja").
FILTER(CONTAINS(?label, "文庫")).
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v6("?entity")
v3("?isil"):::projected
v1("?label"):::projected
v2("?library"):::projected
v4("?ndl_auth"):::projected
v5("?postcode"):::projected
a1((" "))
c7(["wd:Q17"]):::iri
c5(["wd:Q7075"]):::iri
f0[["contains(?label,'文庫')"]]
f0 --> v1
f1[["?label = 'ja'"]]
f1 --> v1
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
v2 --"wdt:P17"--> c7
v2 --"rdfs:label"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P791".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P349".-> v4
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P281".-> v5
end
bind2[/"?library"/]
v2 --o bind2
bind2 --as--o v6