query-f2aafdc61a65ee20013694c59a6d0a18
PropertiesX username (P2002)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?string ?item ?itemLabel WHERE {
VALUES ?string {
"EmmanuelMacron"
"realDonaldTrump"
}
?item wdt:P2002 ?string.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]" }
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v1("?itemLabel"):::projected
v2("?string"):::projected
c3(["bd:serviceParam"]):::iri
c5(["#91;AUTO_LANGUAGE#93;"]):::literal
bind0[/VALUES ?string/]
bind0-->v2
bind00(["EmmanuelMacron"])
bind00 --> bind0
bind01(["realDonaldTrump"])
bind01 --> bind0
v3 --"wdt:P2002"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end