query-3d0e609348b22af0b7f9756d233de679
, vous obtenez l'élément et aussi le libellé SELECT. Si vous ajoutez ceci à la clause ?foo qui contient le libellé de l'élément correspondant à ?fooLabel, vous avez maintenant une variable ?foo, vous obtenez des variables additionnelles : pour chaque variable WHEREquelque part à l'intérieur de la clause
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 père Bach
?enfant wdt:P22 wd:Q1339.
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
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;"]):::literal
v1 --"wdt:P22"--> c2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end