query-ef3ef57fe9c179b9c8014bb8a8842dd0

rq turtle/ttl

title: "smell" somewhere within the item SELECT DISTINCT ?item ?itemLabel WHERE { hint:Query hint:optimizer "None".

SERVICE wikibase:mwapi { bd:serviceParam wikibase:api "Search"; wikibase:endpoint "www.wikidata.org"; mwapi:srsearch "smell". ?item wikibase:apiOutputItem mwapi:title . }

?item wdt:P31/wdt:P279* wd:Q838948 . hint:Prior hint:gearing "forward". SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

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#>
#title: "smell" somewhere within the item
SELECT DISTINCT ?item ?itemLabel 
WHERE {


  SERVICE wikibase:mwapi {
    bd:serviceParam wikibase:api "Search";
                    wikibase:endpoint "www.wikidata.org";
                    mwapi:srsearch "smell".
    ?item wikibase:apiOutputItem mwapi:title .
  }

  ?item wdt:P31/wdt:P279* wd:Q838948 . 
  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 a1((" ")) c6(["www.wikidata.org"]):::literal c13(["wd:Q838948"]):::iri c8(["smell"]):::literal c2(["bd:serviceParam"]):::iri c4(["Search"]):::literal c16(["#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 v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c13 subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c2 --"mwapi:language"--> c16 end