query-f975c1b34dd0e6da3510093e67da8033

rq turtle/ttl

Liste de films réalisés par des réalisatrices ou realisateurs de nationalité française nés après 1930 avec ou sans Gérard Depardieu.

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?item ?itemLabel (YEAR(?birthdate) AS ?birthyear) ?gender ?genderLabel ?movie ?movieLabel ?gerard WHERE {
  ?item (wdt:P106/(wdt:P279*)) wd:Q3455803;
    wdt:P27 wd:Q142;
    wdt:P21 ?gender;
    wdt:P569 ?birthdate;
    rdfs:label ?itemLabel.
  FILTER((YEAR(?birthdate)) > 1930 )
  FILTER((LANG(?itemLabel)) = "[AUTO_LANGUAGE]")
  ?gender rdfs:label ?genderLabel.
  FILTER((LANG(?genderLabel)) = "[AUTO_LANGUAGE]")
  ?movie wdt:P57 ?item;
    wdt:P577 ?date;
    wdt:P161 ?distribution;
    rdfs:label ?movieLabel.
  BIND(wd:Q106508 IN(?distribution) AS ?gerard)
  FILTER((LANG(?movieLabel)) = "[AUTO_LANGUAGE]")
  ?distribution rdfs:label ?distributionLabel.
  FILTER((LANG(?distributionLabel)) = "[AUTO_LANGUAGE]")
}
LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?birthdate"):::projected v12("?birthyear") v9("?date") v10("?distribution") v1("?distributionLabel") v7("?gender"):::projected v3("?genderLabel"):::projected v11("?gerard"):::projected v6("?item"):::projected v4("?itemLabel"):::projected v8("?movie"):::projected v2("?movieLabel"):::projected a1((" ")) c5(["wd:Q3455803"]):::iri c7(["wd:Q142"]):::iri f0[["?distributionLabel = '#91;AUTO_LANGUAGE#93;'"]] f0 --> v1 f1[["?movieLabel = '#91;AUTO_LANGUAGE#93;'"]] f1 --> v2 f2[["?genderLabel = '#91;AUTO_LANGUAGE#93;'"]] f2 --> v3 f3[["?itemLabel = '#91;AUTO_LANGUAGE#93;'"]] f3 --> v4 f4[["year-from-dateTime(?birthdate) > '1930^^xsd:integer'"]] f4 --> v5 v6 --"wdt:P106"--> a1 a1 --"wdt:P279"--> c5 v6 --"wdt:P27"--> c7 v6 --"wdt:P21"--> v7 v6 --"wdt:P569"--> v5 v6 --"rdfs:label"--> v4 v7 --"rdfs:label"--> v3 v8 --"wdt:P57"--> v6 v8 --"wdt:P577"--> v9 v8 --"wdt:P161"--> v10 v8 --"rdfs:label"--> v2 bind5[/"'wd:Q106508' = ?distribution"/] v10 --o bind5 bind5 --as--o v11 v10 --"rdfs:label"--> v1 bind6[/"year-from-dateTime(?birthdate)"/] v5 --o bind6 bind6 --as--o v12