query-5349b528f7212ecc97df640ac4ae2eca

rq turtle/ttl

Jeux de société avec editeur SELECT ?jeuxLabel ?IDboardgameLabel WHERE { ?jeux wdt:P31 wd:Q131436. MINUS { ?jeux wdt:P2339 ?IDboardgame. } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

Use at

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#>
#Jeux de société avec editeur
SELECT ?jeuxLabel ?IDboardgameLabel
WHERE 
{
  ?jeux wdt:P31 wd:Q131436.
 MINUS { ?jeux wdt:P2339 ?IDboardgame. }
  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("?IDboardgame") v1("?jeux") c5(["bd:serviceParam"]):::iri c2(["wd:Q131436"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P31"--> c2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P2339"--> v2 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end