query-36c86689d7dd9e06ef8cc11521397d41
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:P31 wd:Q5 ; wdt:P106 wd:Q2374149 . # people ; working as botanist
#?item wdt:P21 wd:Q6581072 # female
#?item wdt:P21 wd:Q6581097 # male
SERVICE wikibase:mwapi {
bd:serviceParam wikibase:api "EntitySearch" .
bd:serviceParam wikibase:endpoint "www.wikidata.org" .
bd:serviceParam mwapi:search "Santiago Ortiz Nuñez" .
bd:serviceParam mwapi:language "en" .
?item wikibase:apiOutputItem mwapi:item .
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
} ORDER BY ASC(?itemLabel) LIMIT 50
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
c10(["www.wikidata.org"]):::literal
c16(["mwapi:item"]):::iri
c14(["en"]):::literal
c6(["bd:serviceParam"]):::iri
c8(["EntitySearch"]):::literal
c12(["Santiago Ortiz Nuñez"]):::literal
c2(["wd:Q5"]):::iri
c4(["wd:Q2374149"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P106"--> c4
subgraph s1["http://wikiba.se/ontology#mwapi"]
style s1 stroke-width:4px;
c6 --"mwapi:api"--> c8
c6 --"mwapi:endpoint"--> c10
c6 --"mwapi:search"--> c12
c6 --"mwapi:language"--> c14
v2 --"mwapi:apiOutputItem"--> c16
end
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c6 --"mwapi:language"--> c14
end