query-b857ae07c27b8379144d155e154bc432

rq turtle/ttl

pour rechercher une chaîne de caractère au début d'un nom

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 ?item ?itemlabel
WHERE {
  ?item wdt:P734 wd:Q16880652 . #Oda
  ?item rdfs:label ?itemlabel .
  FILTER (lang(?itemlabel) = "ja"). 
  FILTER(STRSTARTS(?itemlabel, '織田')) .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "ja" . }
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?itemlabel"):::projected c4(["wd:Q16880652"]):::iri c7(["bd:serviceParam"]):::iri c2(["ja"]):::literal f0[["starts-with(?itemlabel,'織田')"]] f0 --> v1 f1[["?itemlabel = 'ja'"]] f1 --> v1 v2 --"wdt:P734"--> c4 v2 --"rdfs:label"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c2 end