query-86785af8764559f0f421a2053c2c4a9c

rq turtle/ttl

Use Search API of Wikidata

Use at

PREFIX mwapi: <http://wikiba.se/ontology#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?itemDescription  WHERE {   


  SERVICE wikibase:mwapi {     
    bd:serviceParam wikibase:api "Search";                     
    wikibase:endpoint "www.wikidata.org";
    mwapi:srsearch "Platz in Berlin-Biesdorf".
    ?item wikibase:apiOutputItem mwapi:title .   
    }      

  SERVICE wikibase:label { 
    bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". 
    } 
} 

limit 10

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 c8(["Platz in Berlin-Biesdorf"]):::literal c2(["bd:serviceParam"]):::iri c4(["Search"]):::literal c13(["#91;AUTO_LANGUAGE#93;,en"]):::literal c10(["mwapi:title"]):::iri 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 subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c2 --"mwapi:language"--> c13 end