query-6acd285d57793be8bff656862330fe55
Consultes federadesNo dóna resultats:
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#>
PREFIX bned: <https://datos.bne.es/def/>
PREFIX bner: <https://datos.bne.es/resource/>
select ?llibre ?titol
where {
{
SELECT ?llibre ?titol ?bneid ?cosa WHERE
{
wd:Q234663 wdt:P950 ?bneid
BIND (URI(CONCAT("https://datos.bne.es/resource/",?bneid)) as ?cosa )
} }SERVICE <http://datos.bne.es/sparql> {
?bneid bned:OP5001 ?llibre.
?llibre rdfs:label ?titol
}
}
LIMIT 2
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?bneid")
v2("?cosa")
v3("?llibre"):::projected
v4("?titol"):::projected
c1(["wd:Q234663"]):::iri
c1 --"wdt:P950"--> v1
bind0[/"concat('https://datos.bne.es/resource/',?bneid)"/]
v1 --o bind0
bind0 --as--o v2
subgraph s1["http://datos.bne.es/sparql"]
style s1 stroke-width:4px;
v1 --https://datos.bne.es/def/OP5001--> v3
v3 --"rdfs:label"--> v4
end