query-e903b5e9c2d57e622cb69a44b6c2353d
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?title ?link {
?link schema:isPartOf <https://fr.wikivoyage.org/>; schema:name ?title; schema:about ?item .
MINUS { ?item wdt:P402 [] } .
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en" } .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v1("?link"):::projected
v2("?title"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c2([https://fr.wikivoyage.org/]):::iri
c9(["fr,en"]):::literal
v1 --"schema:isPartOf"--> c2
v1 --"schema:name"--> v2
v1 --"schema:about"--> v3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P402"--> a1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end