query-3897b8852f319c9897300efbabc0c972
National competitions (not seasons) without country.
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
?item ?itemLabel
WHERE
{
VALUES ?values { wd:Q15991303 wd:Q34262376 wd:Q1824674 wd:Q34262807}
?item wdt:P31 ?values
MINUS { ?item wdt:P3450 [] }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?values")
a1((" "))
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
bind0[/VALUES ?values/]
bind0-->v1
bind00(["wd:Q15991303"])
bind00 --> bind0
bind01(["wd:Q34262376"])
bind01 --> bind0
bind02(["wd:Q1824674"])
bind02 --> bind0
bind03(["wd:Q34262807"])
bind03 --> bind0
v2 --"wdt:P31"--> v1
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P3450"--> a1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end