query-54996299348c759b4028051dd28d7eee

rq turtle/ttl

(9) Graph of patrilineal ancestors: Kung Tsui-chang (Confucius's descendant)No.9 (2019.11.07T0904 created)

Use at

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 patrilineal ancestors (father's father's...) of Kung Tsui-chang (Confucius's descendant, incumbent Duke Yansheng)
#defaultView:Graph
SELECT ?paternal ?paternalLabel ?birthdate ?image ?father ?fatherLabel ?edgeLabel
WHERE {
  # define ?paternal as Kung Tsui-chang (Q5966226)'s any father (P22)'s father's...
  wd:Q5966226 wdt:P22* ?paternal
  # optional: define ?paternal's father (P22) as ?father
  OPTIONAL {?paternal wdt:P22 ?father.
           # show father (P22) on graph edges
            ?edge wikibase:directClaim wdt:P22;
               a wikibase:Property}
  # optional: show ?paternal's birthdate (P569), which only appears in table, not graph 
  OPTIONAL {?paternal wdt:P569 ?birthdate}
  # optional: show ?paternal's image (P18), which appears directly in graph, and as link in table
  OPTIONAL {?paternal 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; v4("?birthdate"):::projected v3("?edge") v2("?father"):::projected v5("?image"):::projected v1("?paternal"):::projected c1(["wd:Q5966226"]):::iri c2(["wdt:P22"]):::iri c9(["bd:serviceParam"]):::iri c5(["wikibase:Property"]):::iri c11(["zh-hans,en"]):::literal c1 -->c2--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -->c2--> v2 v3 -."wikibase:directClaim".-> c2 v3 --"a"--> c5 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P569".-> v4 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end