query-aa150cd4bb8f639baaca3a7516372a78

rq turtle/ttl

نص بواسطة مؤلف يحتوي على عنوان غير حساس لحالة الأحرف مع صورة غلاف اختيارية Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text od autora obsahující název rozlišující velká a malá písmena s volitelným obrázkem obálky Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Textes d’un auteur dont les titres contiennent une certaine chaîne de caractères (sans tenir compte de la casse), avec l’image de la couverture si disponible Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Testo per autore contenente un titolo non sensibile alle maiuscole e un'immagine di copertina opzionale Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Tekst van auteur met hoofdletterongevoelige titel met optionele omslagafbeelding Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text av författare som innehåller versaliseringskänslig titel med valfritt omslagsbild Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image Text by author containing case-insensitive title with optional cover image

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
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#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?authorLabel ?itemLabel ?image where {
  ?item wdt:P31/wdt:P279* wd:Q234460.

  ?author ?label 'Bram Stoker'.
  ?item wdt:P50 ?author.

  ?item rdfs:label ?itemLabel.
  FILTER contains(lcase(?itemLabel), 'dracula').

  OPTIONAL {?item wdt:P18 ?image.}

  SERVICE wikibase:label {bd:serviceParam wikibase:language "[AUTO_LANGUAGE]".}
} LIMIT 50

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?author") v5("?image"):::projected v2("?item"):::projected v1("?itemLabel"):::projected v4("?label") a1((" ")) c10(["bd:serviceParam"]):::iri c5(["Bram Stoker"]):::literal c12(["#91;AUTO_LANGUAGE#93;"]):::literal c4(["wd:Q234460"]):::iri f0[["contains(lower-case(?itemLabel),'dracula')"]] f0 --> v1 v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c4 v3 -->v4--> c5 v2 --"wdt:P50"--> v3 v2 --"rdfs:label"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end