query-0b6ba885cd7e674f20df0d4da6325a08

rq turtle/ttl

ratings of Hungarian films SELECT DISTINCT ?film ?filmLabel ?ratingLabel ?age ?countryLabel WHERE { [] wdt:P31/wdt:P279 wd:Q24716199; wikibase:directClaim ?p . ?film wdt:P31/wdt:P279 wd:Q11424; wdt:P495 wd:Q28; ?p ?rating . ?rating wdt:P2899 ?age; wdt:P31/wdt:P361/wdt:P17 ?country . SERVICE wikibase:label { bd:serviceParam wikibase:language "hu,en" . } } ORDER BY ?filmLabel ?countryLabel

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#>
# ratings of Hungarian films
SELECT DISTINCT ?film ?filmLabel ?ratingLabel ?age ?countryLabel
WHERE {
  [] wdt:P31/wdt:P279* wd:Q24716199; wikibase:directClaim ?p .
  ?film wdt:P31/wdt:P279* wd:Q11424;
        wdt:P495 wd:Q28;
        ?p ?rating .
  ?rating wdt:P2899 ?age; wdt:P31/wdt:P361/wdt:P17 ?country .
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "hu,en" .
  }
} ORDER BY ?filmLabel ?countryLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?age"):::projected v7("?country") v2("?countryLabel"):::projected v4("?film"):::projected v1("?filmLabel"):::projected v3("?p") v5("?rating") a1((" ")) a2((" ")) a3((" ")) a4((" ")) a5((" ")) c3(["wd:Q24716199"]):::iri c14(["hu,en"]):::literal c7(["wd:Q28"]):::iri c12(["bd:serviceParam"]):::iri c5(["wd:Q11424"]):::iri a1 --"wdt:P31"--> a2 a2 --"wdt:P279"--> c3 a1 --"wikibase:directClaim"--> v3 v4 --"wdt:P31"--> a3 a3 --"wdt:P279"--> c5 v4 --"wdt:P495"--> c7 v4 -->v3--> v5 v5 --"wdt:P2899"--> v6 v5 --"wdt:P31"--> a4 a4 --"wdt:P361"--> a5 a5 --"wdt:P17"--> v7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c12 --"wikibase:language"--> c14 end