query-45ab4f2f3858554fe3e0d2d85ecb230a

rq turtle/ttl

Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Filmy režisérů podle jejich názvu na anglické Wikipedii Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Directeurs de film par leur nom Wikipédia anglais סרטים של במאים לפי שמם בוויקיפדיה האנגלית Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Film di registi secondo il loro nome di Wikipedia in inglese Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films van regisseurs met hun Engelse Wikipedia-naam Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Filmer av regissörer efter deras namn på engelskspråkiga Wikipedia Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name Фільми режисера за назвою статті англійської Вікіпедії Films of directors by their English Wikipedia name Films of directors by their English Wikipedia name

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?film ?filmLabel ?genere ?d WHERE {
  {
    SELECT ?film (GROUP_CONCAT(DISTINCT ?gL; SEPARATOR = ", ") AS ?genere) (MIN(YEAR(?date)) AS ?d) WHERE {
      ?sitelink schema:about ?director;
        schema:isPartOf <https://en.wikipedia.org/>;
        schema:name "Steven Spielberg"@en. # Edit this with different director's name to see their films. Use the English Wikipedia title only.
      ?film wdt:P31 wd:Q11424;
        wdt:P136 ?g, ?g.
      ?g rdfs:label ?gL.
      ?film wdt:P57 ?director;
        wdt:P577 ?date.
      FILTER((LANG(?gL)) = "en")
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
    }
    GROUP BY ?film
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY DESC (?d)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v9("?d"):::projected v7("?date") v4("?director") v5("?film"):::projected v6("?g") v2("?gL") v8("?genere"):::projected v3("?sitelink") c6([sSteven Spielberg^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal c1(["en"]):::literal c4([https://en.wikipedia.org/]):::iri c14(["bd:serviceParam"]):::iri c8(["wd:Q11424"]):::iri f0[["?gL = 'en'"]] f0 --> v2 v3 --"schema:about"--> v4 v3 --"schema:isPartOf"--> c4 v3 --"schema:name"--> c6 v5 --"wdt:P31"--> c8 v5 --"wdt:P136"--> v6 v5 --"wdt:P136"--> v6 v6 --"rdfs:label"--> v2 v5 --"wdt:P57"--> v4 v5 --"wdt:P577"--> v7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c14 --"wikibase:language"--> c1 end bind3[/"?gL"/] v2 --o bind3 bind3 --as--o v8 bind4[/"min(year-from-dateTime(?date))"/] v7 --o bind4 bind4 --as--o v9 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c14 --"wikibase:language"--> c1 end