query-a9e6cbf12eb48e53b12461e318845567
Propertiesauthor (P50)ISNI (P213)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?workLabel ?work ?authorLabel ?author ?isniID
WHERE {
?work wdt:P50 ?author;
rdfs:label ?workLabel.
?author wdt:P213 ?isniID.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?author"):::projected
v4("?isniID"):::projected
v1("?work"):::projected
v3("?workLabel"):::projected
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
v1 --"wdt:P50"--> v2
v1 --"rdfs:label"--> v3
v2 --"wdt:P213"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end