query-52301c19abd1d1f62d2e085c65fd3dfa
クエリ国内の図書館についてのデータを一覧する
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?library ?libraryLabel ?isil ?ndl_auth ?postcode
WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ja,en". }
?library (wdt:P31/wdt:P279*) wd:Q7075.
?library wdt:P17 wd:Q17.
MINUS {
?library wdt:P31 wd:Q28324850
}
OPTIONAL {?library wdt:P791 ?isil}
OPTIONAL {?library wdt:P349 ?ndl_auth}
OPTIONAL {?library wdt:P281 ?postcode}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?isil"):::projected
v1("?library"):::projected
v3("?ndl_auth"):::projected
v4("?postcode"):::projected
a1((" "))
c9(["wd:Q17"]):::iri
c7(["wd:Q7075"]):::iri
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,ja,en"]):::literal
c10(["wd:Q28324850"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c7
v1 --"wdt:P17"--> c9
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P31"--> c10
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P791".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P349".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P281".-> v4
end