query-1f9d928214a7da386bd02b790e1ee308
Author name strings SELECT ?item ?itemLabel { ?item wdt:P2093 "Jane Doe" . 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 "Jane Doe" .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
- https://www.wikidata.org/wiki/Property_talk:P2093
- https://www.wikidata.org/wiki/User:Dirac/Auteurs
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2019/08
- https://www.wikidata.org/wiki/Wikidata:WikiProject_Mineralogy/Queries
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(["Jane Doe"]):::literal
v1 --"wdt:P2093"--> c2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end