query-ffb6420c89a335b24d3602573ac40908
Obras de Emilia Pardo Bazán, con fechas de publicación, forma y género literario
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#>
SELECT ?obra ?obraLabel ?formaLabel ?generoLabel ?fecha_publicacion WHERE {
?obra wdt:P50 wd:Q275929.
OPTIONAL { ?obra wdt:P7937 ?forma. }
OPTIONAL { ?obra wdt:P577 ?fecha. }
OPTIONAL { ?obra wdt:P136 ?genero. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
}
Query found at
- https://www.wikidata.org/wiki/User:Japastorsanchez/CursoHumanistaWikidata
- https://www.wikidata.org/wiki/User:MonMMol/MMM
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?fecha")
v2("?forma")
v4("?genero")
v1("?obra"):::projected
c7(["bd:serviceParam"]):::iri
c9(["es"]):::literal
c2(["wd:Q275929"]):::iri
v1 --"wdt:P50"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P7937".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P577".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P136".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end