query-65adb4a19e072668960a255a03219455
, senza relazioni intermedie ("percorso di lunghezza zero"). ?a coincida con ?b include anche la possibilità che ?a qualcosa* ?bIn assenza di altri elementi nel percorso, una notazione del tipo o più di questi elementi”. La seguente query trova tutti i discendenti di Bach: uno) è simile a un asterisco, ma significa “+Un più (
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 ?discendente ?discendenteLabel
WHERE
{
wd:Q1339 wdt:P40+ ?discendente.
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("?discendente"):::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