query-3303bfbac32261b23acd2151af56accc
Query #15: List of Economics Journals
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?academic_journal ?academic_journalLabel ?article ?country ?countryLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?academic_journal wdt:P31 wd:Q737498.
?academic_journal wdt:P921 wd:Q8134.
?academic_journal wdt:P495 ?country.
?article schema:about ?academic_journal.
?article schema:isPartOf <https://en.wikipedia.org/>.
}
ORDER BY ASC(?countryLabel)
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?academic_journal"):::projected
v4("?article"):::projected
v3("?country"):::projected
v1("?countryLabel"):::projected
c8(["wd:Q8134"]):::iri
c12([https://en.wikipedia.org/]):::iri
c2(["bd:serviceParam"]):::iri
c6(["wd:Q737498"]):::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
v2 --"wdt:P31"--> c6
v2 --"wdt:P921"--> c8
v2 --"wdt:P495"--> v3
v4 --"schema:about"--> v2
v4 --"schema:isPartOf"--> c12