query-a484b835c13bdd631b5848488e197792
list of JLSC articles with publication dates and subjects
SELECT ?item ?itemLabel ?subjectLabel ?publication_date ?volume WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?item wdt:P1433 wd:Q27727173. OPTIONAL { ?item wdt:P921 ?subject. } OPTIONAL { ?item wdt:P577 ?publication_date. } OPTIONAL { ?item wdt:P478 ?volume. } } ORDER BY ?volume ?itemLabel LIMIT 5000
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#>
# list of JLSC articles with publication dates and subjects
SELECT ?item ?itemLabel
?subjectLabel ?publication_date ?volume WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P1433 wd:Q27727173.
OPTIONAL { ?item wdt:P921 ?subject. }
OPTIONAL { ?item wdt:P577 ?publication_date. }
OPTIONAL { ?item wdt:P478 ?volume. }
}
ORDER BY ?volume ?itemLabel
LIMIT 5000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v2("?itemLabel"):::projected
v5("?publication_date"):::projected
v4("?subject")
v1("?volume"):::projected
c2(["bd:serviceParam"]):::iri
c6(["wd:Q27727173"]):::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
v3 --"wdt:P1433"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P921".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P577".-> v5
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P478".-> v1
end