query-9beeb122d52b59046b7f2c722ccdc629

rq turtle/ttl

Nominated for the 88th Academy Awards

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX schema: <http://schema.org/>

PREFIX p: <http://www.wikidata.org/prop/>
PREFIX v: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>

SELECT ?item ?itemLabel ?awardLabel WHERE {
  ?item p:P1411 ?award_statement .
  ?award_statement v:P1411 ?award .
  ?award_statement pq:P805 wd:Q20022969 .
  #OPTIONAL { ?article schema:about ?item . ?article schema:inLanguage "en" } FILTER(!bound(?article))
 SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en" .
  }
} ORDER BY ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?award") v3("?award_statement") v2("?item"):::projected v1("?itemLabel"):::projected c4(["wd:Q20022969"]):::iri c6(["bd:serviceParam"]):::iri c8(["en"]):::literal v2 --"p:P1411"--> v3 v3 --"p:statement/P1411"--> v4 v3 --"p:qualifier/P805"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end