query-00283c704719c01a49f3d4df085d8c49
TODO
Use at
- https://query.wikidata.org/sparql
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 ?item ?itemLabel WHERE {
#?item wdt:P21 wd:Q6581072 # female
#?item wdt:P21 wd:Q6581097 # male
SERVICE wikibase:mwapi {
bd:serviceParam wikibase:api "Search" .
bd:serviceParam wikibase:endpoint "www.wikidata.org" .
bd:serviceParam mwapi:srsearch "Ortiz" .
?item wikibase:apiOutputItem mwapi:title .
}
?item wdt:P31 wd:Q5 ; wdt:P106 wd:Q2374149 . # peopleĀ ; working as botanist
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
} ORDER BY ASC(?itemLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
c6(["www.wikidata.org"]):::literal
c17(["en"]):::literal
c8(["Ortiz"]):::literal
c2(["bd:serviceParam"]):::iri
c4(["Search"]):::literal
c12(["wd:Q5"]):::iri
c10(["mwapi:title"]):::iri
c14(["wd:Q2374149"]):::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
v2 --"mwapi:apiOutputItem"--> c10
end
v2 --"wdt:P31"--> c12
v2 --"wdt:P106"--> c14
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c2 --"mwapi:language"--> c17
end