query-343f47ba5b607b74d86355c2799fac2d
de forma directa, sense elements de ruta entre ells. ?a pot només ser ?b significa que ?a algunacosa* ?bSi no hi ha elements a la ruta, o més d'aquests elements». La consulta següent troba tots els descendents de Bach: un) és similar a un asterisc, però significa «+Un signe (
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 ?descendent ?descendentLabel
WHERE
{
wd:Q1339 wdt:P40+ ?descendent.
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("?descendent"):::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