query-a3449ab4e51474c48d21505107cae767
Author name strings SELECT ?item ?itemLabel { ?item wdt:P2093 "Bill Thompson" . SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } }
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#>
#Author name strings
SELECT ?item ?itemLabel
{
?item wdt:P2093 "Bill Thompson" .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
- https://www.wikidata.org/wiki/User:Pigsonthewing/Queries
- https://www.wikidata.org/wiki/Wikidata:Project_chat/Archive/2019/04
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
c4(["bd:serviceParam"]):::iri
c6(["en"]):::literal
c2(["Bill Thompson"]):::literal
v1 --"wdt:P2093"--> c2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end