query-200454b936797a6ae22da4cf8400dc79
Roman emperors with a modern-style first name or family name SELECT ?item ?itemLabel ?nameLabel WHERE { ?item wdt:P31 wd:Q5 . ?item wdt:P39 wd:Q842606 . ?item wdt:P734|wdt:P735 ?name . 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 wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Roman emperors with a modern-style first name or family name
SELECT ?item ?itemLabel ?nameLabel WHERE {
?item wdt:P31 wd:Q5 .
?item wdt:P39 wd:Q842606 .
?item wdt:P734|wdt:P735 ?name .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?name")
c8(["bd:serviceParam"]):::iri
c4(["wd:Q842606"]):::iri
c2(["wd:Q5"]):::iri
c10(["en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P39"--> c4
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P735"--> v2
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P734"--> v2
end
union0r <== or ==> union0l
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end