query-74529b9785e8058760d9234eb6ac07ab
Articles dans une des revues de MDPI dont un auteur est employé/affilié UdeMOn peut remplacer MDPI par Hindawi, Frontiers, etc.
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 DISTINCT ?article ?articleLabel ?author_udem ?author_udemLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?article wdt:P31 wd:Q13442814. # instance = scholarly article
?article wdt:P1433 ?journal. # published in
?journal wdt:P123 wd:Q6715186. # publisher = MDPI
?article wdt:P50 ?author_udem.
{?author_udem wdt:P108 wd:Q392189} # employer = UdeM
UNION # OR
{ ?author_udem wdt:P1416 wd:Q392189} # affiliation = UdeM
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article"):::projected
v3("?author_udem"):::projected
v2("?journal")
c12(["wd:Q392189"]):::iri
c2(["bd:serviceParam"]):::iri
c6(["wd:Q13442814"]):::iri
c9(["wd:Q6715186"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P31"--> c6
v1 --"wdt:P1433"--> v2
v2 --"wdt:P123"--> c9
v1 --"wdt:P50"--> v3
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v3 --"wdt:P1416"--> c12
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v3 --"wdt:P108"--> c12
end
union0r <== or ==> union0l
end