query-f60324fab9de0b09255112cdcf9aed00

rq turtle/ttl

TODO

Use at

PREFIX mwapi: <http://wikiba.se/ontology#>
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#>
SELECT DISTINCT ?item ?itemLabel 
WHERE {

  SERVICE wikibase:mwapi {
    bd:serviceParam wikibase:api "Search";
                    wikibase:endpoint "www.wikidata.org";
                    mwapi:srsearch "^*.Murat*.".
    ?item wikibase:apiOutputItem mwapi:title .
  }
  ?item wdt:P4101 wd:Q174570 . 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected c6(["www.wikidata.org"]):::literal c12(["wd:Q174570"]):::iri c2(["bd:serviceParam"]):::iri c4(["Search"]):::literal c15(["#91;AUTO_LANGUAGE#93;,en"]):::literal c10(["mwapi:title"]):::iri c8(["^*.Murat*."]):::literal subgraph s1["http://wikiba.se/ontology#mwapi"] style s1 stroke-width:4px; c2 --"mwapi:api"--> c4 c2 --"mwapi:endpoint"--> c6 c2 --"mwapi:srsearch"--> c8 v1 --"mwapi:apiOutputItem"--> c10 end v1 --"wdt:P4101"--> c12 subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c2 --"mwapi:language"--> c15 end