query-dfed47d5d6671ac42230defed483085b
title:Manuscripts in Rahlfs catalogue SELECT ?item ?itemLabel ?n WHERE { ?item p:P528 ?st . ?st ps:P528 ?n ; pq:P972 wd:Q122984724 . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?n
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Manuscripts in Rahlfs catalogue
SELECT ?item ?itemLabel ?n
WHERE {
?item p:P528 ?st .
?st ps:P528 ?n ; pq:P972 wd:Q122984724 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?n
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?n"):::projected
v3("?st")
c6(["bd:serviceParam"]):::iri
c4(["wd:Q122984724"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"p:P528"--> v3
v3 --"p:statement/P528"--> v1
v3 --"p:qualifier/P972"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end