query-45c482b965aa73b6c9607f0965f97aa5
Articles en français sans Published in :
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 ?url WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P31 wd:Q13442814. # scholarly article
?item wdt:P953 ?url.
?item wdt:P407 wd:Q150. # en francais
FILTER NOT EXISTS { ?item wdt:P1433 ?val }
#FILTER(CONTAINS(LCASE(?itemDescription), "plosone"))
}
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v3("?url"):::projected
v2("?val")
c3(["bd:serviceParam"]):::iri
c7(["wd:Q13442814"]):::iri
c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c10(["wd:Q150"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"wdt:P1433"--> e0v2
e0v1("?item"):::projected
e0v2("?val"):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
v1 --"wdt:P1433"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end
v1 --"wdt:P31"--> c7
v1 --"wdt:P953"--> v3
v1 --"wdt:P407"--> c10