query-db5e2a54098bd2b79007bcffcfcfe754
Propertiesbotanist author abbreviation (P428)
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?author ?authorLabel WHERE {
?author wdt:P428 'Rick'.
OPTIONAL {
?author rdfs:label ?authorLabel.
FILTER((LANG(?authorLabel)) = "en")
}
}
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?author"):::projected
v1("?authorLabel"):::projected
c3(["Rick"]):::literal
v2 --"wdt:P428"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."rdfs:label".-> v1
end