query-030fb155a076c3b8db0922fb9d5096f0
directamente, con ningún elemento en la ruta entre ellos. ?a también podría ser ?b significa que ?a algo* ?b Si no hay otros elementos en la ruta, ) es similar a un asterisco, pero significa "'uno' 'o más de este elemento". La siguiente consulta rastrea a todos los descendientes de Bach: + Un signo más (
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#>
SELECT ?descendiente ?descendienteLabel
WHERE
{
wd:Q1339 wdt:P40+ ?descendiente.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?descendiente"):::projected
c1(["wd:Q1339"]):::iri
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;"]):::literal
c1 --"wdt:P40"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end