query-b55b34be8c0b34bf66802ebfa40c62c7

rq turtle/ttl

Synonyms

Use at

PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?name WHERE {
VALUES ?rel {rdfs:label skos:altLabel}
VALUES ?rel2 {rdfs:label skos:altLabel}
?target ?rel "Confucius"@en;
 ?rel2 ?name FILTER ( lang(?name)="en" )
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?name"):::projected v2("?rel") v3("?rel2") v4("?target") c2([sConfucius^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal f0[["?name = 'en'"]] f0 --> v1 bind1[/VALUES ?rel/] bind1-->v2 bind10(["rdfs:label"]) bind10 --> bind1 bind11(["skos:altLabel"]) bind11 --> bind1 bind2[/VALUES ?rel2/] bind2-->v3 bind20(["rdfs:label"]) bind20 --> bind2 bind21(["skos:altLabel"]) bind21 --> bind2 v4 -->v2--> c2 v4 -->v3--> v1