query-1cffd0924be189a053e44a9a7aeea69b
No funciona:
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?workLabel WHERE {
wd:Q165257 wdt:P2799 ?id
BIND(concat("http://data.cervantesvirtual.com/person/", ?id) as ?bvmcID)
SERVICE <https://data.cervantesvirtual.com/openrdf-sesame/repositories/data> {
?bvmcID <https://rdaregistry.info/Elements/a/authorOf> ?work .
?work rdfs:label ?workLabel
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?bvmcID")
v1("?id")
v3("?work")
v4("?workLabel"):::projected
c1(["wd:Q165257"]):::iri
c1 --"wdt:P2799"--> v1
bind0[/"concat('http://data.cervantesvirtual.com/person/',?id)"/]
v1 --o bind0
bind0 --as--o v2
subgraph s1["https://data.cervantesvirtual.com/openrdf-sesame/repositories/data"]
style s1 stroke-width:4px;
v2 --https://rdaregistry.info/Elements/a/authorOf--> v3
v3 --"rdfs:label"--> v4
end