query-2f866b77a6820afe98637cf4a3af5991
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX schema: <http://schema.org/>
SELECT ?item ?lemma WHERE {
VALUES ?lemma {
"君が代"@ja
"国風文化"@ja
}
?sitelink_ja schema:about ?item;
schema:isPartOf <https://ja.wikipedia.org/>;
schema:name ?lemma.
MINUS {
?sitelink_en schema:about ?item;
schema:isPartOf <https://en.wikipedia.org/>.
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v1("?lemma"):::projected
v4("?sitelink_en")
v2("?sitelink_ja")
c5([https://en.wikipedia.org/]):::iri
c3([https://ja.wikipedia.org/]):::iri
bind0[/VALUES ?lemma/]
bind0-->v1
bind00([s君が代^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind00 --> bind0
bind01([s国風文化^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind01 --> bind0
v2 --"schema:about"--> v3
v2 --"schema:isPartOf"--> c3
v2 --"schema:name"--> v1
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v4 --"schema:about"--> v3
v4 --"schema:isPartOf"--> c5
end