query-1eca20c1d7f2440ec27302fd61ce876a
All volumes of Flora Batava SELECT DISTINCT ?volume ?titlepage ?volumeLabel ?volumeDescription WHERE { wd:Q117860156 wdt:P527 ?volume. OPTIONAL{?volume wdt:P18 ?titlepage} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?volumeLabel
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#>
#All volumes of Flora Batava
SELECT DISTINCT ?volume ?titlepage ?volumeLabel ?volumeDescription
WHERE
{
wd:Q117860156 wdt:P527 ?volume.
OPTIONAL{?volume wdt:P18 ?titlepage}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?volumeLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?titlepage"):::projected
v2("?volume"):::projected
v1("?volumeLabel"):::projected
c5(["bd:serviceParam"]):::iri
c1(["wd:Q117860156"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c1 --"wdt:P527"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P18".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end