query-bd2c2471082fd02d7ba50b1273be190e
図書館およびその下位クラスに分類されている日本国内の項目.ただし図書館システムに分類されているものを除く
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 ?classLabel ?isil ?ndl_auth ?postcode
WHERE {
?library (wdt:P31/wdt:P279*) wd:Q7075. # instance of any subclass of library
?library wdt:P17 wd:Q17. # 国 == 日本
MINUS {
?library wdt:P31 wd:Q28324850 # 分類 != 図書館システム
}
OPTIONAL {?library wdt:P31 ?class} # 分類
OPTIONAL {?library wdt:P791 ?isil} # ISIL識別子
OPTIONAL {?library wdt:P349 ?ndl_auth} # 国立国会図書館典拠ID
OPTIONAL {?library wdt:P281 ?postcode} # 郵便番号
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ja,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?class")
v3("?isil"):::projected
v1("?library"):::projected
v4("?ndl_auth"):::projected
v5("?postcode"):::projected
a1((" "))
c5(["wd:Q17"]):::iri
c3(["wd:Q7075"]):::iri
c11(["bd:serviceParam"]):::iri
c13(["#91;AUTO_LANGUAGE#93;,ja,en"]):::literal
c6(["wd:Q28324850"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P17"--> c5
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P31"--> c6
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P31".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P791".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P349".-> v4
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P281".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end