query-bbb7f5e678323bd6c1cf3b7c65f598a1
TODO
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 ?periodical ?periodicalLabel ?inceptionDate
WHERE
{
?periodical wdt:P31/wdt:P279* wd:Q1002697; # Instances of periodicals or their subclasses
#?periodical wdt:P279* wd:Q11032 ;
wdt:P17 wd:Q20; # Located in Norway
wdt:P571 ?inceptionDate. # Inception date of the periodical
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],no". }
}
ORDER BY ?inceptionDate
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?inceptionDate"):::projected
v2("?periodical"):::projected
a1((" "))
c10(["#91;AUTO_LANGUAGE#93;,no"]):::literal
c3(["wd:Q1002697"]):::iri
c8(["bd:serviceParam"]):::iri
c5(["wd:Q20"]):::iri
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P17"--> c5
v2 --"wdt:P571"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end