query-802bc9be92c4cf449e5df6f599d8ef71
, voce ganha o item e também seu rótulo: SELECT . Se voce adicionar isso ao ?foo , que contém o rótulo (em ingles, "label") do item recuperado por fooLabel in your query, you now also have a variable ?foo , voce ganha variáveir adicionais: para cada variável WHEREdentro de
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 ?criança ?criançaLabel
WHERE
{
# ?criança pai Bach
?criança 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("?criança"):::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