query-c96a16ce12223fb3d5bbef24e9dd08b3
, obtindreu tant l'element com la seva etiqueta: SELECT subjacent. Si afegiu això a la clàusula ?foo, la qual conté l'etiqueta de l'element ?fooLabel de la vostra consulta, ara també tindreu una variable ?foo, aconseguireu variables addicionals: Per a cada variable WHEREen algun lloc dins la clàusula
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 ?fill ?fillLabel
WHERE
{
# ?fill pare Bach
?fill 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("?fill"):::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