query-4b817674837638d9663adf08b77b1587

rq turtle/ttl

PropertiesBVMC person ID (P2799)

Use at

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(uri(concat("http://data.cervantesvirtual.com/person/", ?id)) as ?bvmcID)
  SERVICE <http://data.cervantesvirtual.com/openrdf-sesame/repositories/data> {
    ?bvmcID <http://rdaregistry.info/Elements/a/otherPFCManifestationOf> ?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["http://data.cervantesvirtual.com/openrdf-sesame/repositories/data"] style s1 stroke-width:4px; v2 --http://rdaregistry.info/Elements/a/otherPFCManifestationOf--> v3 v3 --"rdfs:label"--> v4 end