query-a6badd7247827d37e21ae54e7f4a4316

rq turtle/ttl

first name of main characters of notable works written by Jane Austen SELECT ?notableWork ?notableWorkLabel ?character ?characterLabel ?givenName ?givenNameLabel WHERE { wd:Q36322 wdt:P800 ?notableWork. ?notableWork wdt:P674 ?character. ?character wdt:P735 ?givenName. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

Use at

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#>
#first name of main characters of notable works written by Jane Austen
SELECT ?notableWork ?notableWorkLabel ?character ?characterLabel ?givenName ?givenNameLabel
WHERE {
  wd:Q36322 wdt:P800 ?notableWork.
  ?notableWork wdt:P674 ?character.
  ?character wdt:P735 ?givenName.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?character"):::projected v3("?givenName"):::projected v1("?notableWork"):::projected c1(["wd:Q36322"]):::iri c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c1 --"wdt:P800"--> v1 v1 --"wdt:P674"--> v2 v2 --"wdt:P735"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end