query-710e45d7db854f3a8228b0b29ae17449
Portal badge on non-portal items
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?sitelink ?item WHERE {
?sitelink wikibase:badge wd:Q17580674; schema:about ?item .
MINUS { ?item wdt:P31/wdt:P279* wd:Q4663903 }
SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?sitelink"):::projected
a1((" "))
c6(["wd:Q4663903"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["en"]):::literal
c2(["wd:Q17580674"]):::iri
v1 --"wikibase:badge"--> c2
v1 --"schema:about"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c6
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end