query-cef718faf4ef483500e525332422e418
QueriesPeople with a Media Art Database Mangaka ID:
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?kana ?value (URI(CONCAT("https://mediaarts-db.bunka.go.jp/mg/authorities/",?value,"?locale=ja")) AS ?valueUrl)
WHERE {
?item wdt:P3231 ?value .
OPTIONAL { ?item wdt:P1814 ?kana . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "ja" }
}
ORDER BY ASC (?value)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v3("?kana"):::projected
v1("?value"):::projected
v4("?valueUrl")
c4(["bd:serviceParam"]):::iri
c6(["ja"]):::literal
v2 --"wdt:P3231"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P1814".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end
bind0[/"concat('https://mediaarts-db.bunka.go.jp/mg/authorities/',?value,'?locale=ja')"/]
v1 --o bind0
bind0 --as--o v4