query-b496fd00bb9a3c8290a79ae8b0f1ac17
Journaux français avec site web SELECT DISTINCT ?item ?itemLabel ?natureLabel ?siteLabel WHERE { ?item wdt:P31/wdt:P279* wd:Q11032 . ?item wdt:P31 ?nature . ?item wdt:P17 wd:Q142 . ?item wdt:P856 ?site . MINUS { ?item wdt:P576 ?dateFin} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr". } } order by ?nature
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#>
#Journaux français avec site web
SELECT DISTINCT ?item ?itemLabel ?natureLabel ?siteLabel
WHERE {
?item wdt:P31/wdt:P279* wd:Q11032 .
?item wdt:P31 ?nature .
?item wdt:P17 wd:Q142 .
?item wdt:P856 ?site .
MINUS { ?item wdt:P576 ?dateFin}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr". }
}
order by ?nature
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?dateFin")
v2("?item"):::projected
v1("?nature")
v3("?site")
a1((" "))
c3(["wd:Q11032"]):::iri
c9(["bd:serviceParam"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,fr"]):::literal
c5(["wd:Q142"]):::iri
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P31"--> v1
v2 --"wdt:P17"--> c5
v2 --"wdt:P856"--> v3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P576"--> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end