query-d026954d07cad6eace9905fad67c5df6
(13) Graph of lineal ancestors: MosesNo.13 (2019.11.07T2002 created)
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#>
# find lineal ancestors of Moses
#defaultView:Graph
SELECT ?ancestor ?ancestorLabel ?birthdate ?image ?parent ?parentLabel ?edgeLabel
WHERE {
# define ?ancestor as Moses (Q9077)'s any father (P22) or mother (P25)'s father or mother's...
wd:Q9077 (wdt:P22|wdt:P25)* ?ancestor
# optional: define ?ancestor's father (P22) or mother (P25) as ?parent
OPTIONAL {?ancestor (wdt:P22|wdt:P25) ?parent
# To avoid showing any other relation than P22 (father) and P25 (mother),
# define ?relation as P22 or P25
VALUES ?relation {wdt:P22 wdt:P25}
# and ?relation is from ?ancestor to ?parent,
?ancestor ?relation ?parent.
# then show ?relation on graph edges
?edge wikibase:directClaim ?relation;
a wikibase:Property}
# optional: show ?ancestor's birthdate (P569), which only appears in table, not graph
OPTIONAL {?ancestor wdt:P569 ?birthdate}
# optional: show ?ancestor's image (P18), which appears directly in graph, and as link in table
OPTIONAL {?ancestor wdt:P18 ?image}
# show label in simplified Chinese (zh-hans) as default, and English when no default label exists
SERVICE wikibase:label { bd:serviceParam wikibase:language "zh-hans,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?ancestor"):::projected
v5("?birthdate"):::projected
v4("?edge")
v6("?image"):::projected
v2("?parent"):::projected
v3("?relation")
c10(["bd:serviceParam"]):::iri
c6(["wikibase:Property"]):::iri
c1(["wd:Q9077"]):::iri
c12(["zh-hans,en"]):::literal
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
c1 --"wdt:P25"--> v1
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
c1 --"wdt:P22"--> v1
end
union0r <== or ==> union0l
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
subgraph union1[" Union "]
subgraph union1l[" "]
style union1l fill:#abf,stroke-dasharray: 3 3;
v1 -."wdt:P25".-> v2
end
subgraph union1r[" "]
style union1r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P22"--> v2
end
union1r <== or ==> union1l
end
bind0[/VALUES ?relation/]
bind0-->v3
bind00(["wdt:P22"])
bind00 --> bind0
bind01(["wdt:P25"])
bind01 --> bind0
v1 -->v3--> v2
v4 --"wikibase:directClaim"--> v3
v4 --"a"--> c6
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P569".-> v5
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v6
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end