query-843e4cf1f5e6c3580ff462adaa9a30db
TODO
Use at
- https://query.wikidata.org/sparql
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 # searching for an author and her*hisWikidata identifier (=q-number)
WHERE {?article wdt:P50 ?item . # an article has this person as author
?article wdt:P4070 ?wd:Q43649390 . # the article has a Wikidata identifier (=q-number)
Values ?wd:Q43649390 { ' Q24535835 ' } . # the wikidata-identifier of the article has this value
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}