query-7308c77e24d6a2cddc5318d75e0ed613
A query about genre booksHello! I would like to make a query to find all books with some genre and write by women. I have create this one but it doesn´t work. Can you help me?
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 ?item ?itemLabel
WHERE
{
?item wdt:P136 wd:Q26928598;
wdt:P136 wd:Q7252;
wdt:P136 wd:Q12132683 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,es". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
c3(["wd:Q7252"]):::iri
c8(["en,es"]):::literal
c6(["bd:serviceParam"]):::iri
c2(["wd:Q26928598"]):::iri
c4(["wd:Q12132683"]):::iri
v1 --"wdt:P136"--> c2
v1 --"wdt:P136"--> c3
v1 --"wdt:P136"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end