query-ff68c802b41c2709b13d686bc6c5cd0e
En langage naturel, cela se lit : Enfant a pour mère Maria Barbara Bach. Enfant a pour père Johann Sebastian Bach. Cela semble un peu difficile, n'est ce pas ? En langage naturel, nous abrégerions en : Enfant a pour père Johann Sebastian Bach et pour mère Maria Barbara Bach. . Ceci nous permet d'abréger la requête ci-dessus en : ) au lieu d'un point, vous pouvez ajouter une autre paire prédicat-objet;si vous terminez un triplet avec un point-virgule (En fait, il est possible d'exprimer la même version abrégée en SPARQL :
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 ?enfant ?enfantLabel
WHERE
{
?enfant wdt:P22 wd:Q1339;
wdt:P25 wd:Q57487.
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("?enfant"):::projected
c2(["wd:Q1339"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;"]):::literal
c4(["wd:Q57487"]):::iri
v1 --"wdt:P22"--> c2
v1 --"wdt:P25"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end