query-a70a0a01befdb885f58f638c5189432f

rq turtle/ttl

TODO

Use at

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 ?cosa ?cosaLabel ?tipo ?tipoLabel
WHERE
{
    ?cosa wdt:P31 ?tipo . # Tipo de item
    ?cosa wdt:P166 wd:Q429700 # Goya mejor actriz reparto
SERVICE wikibase:label { bd:serviceParam wikibase:language "es,en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?cosa"):::projected v2("?tipo"):::projected c5(["bd:serviceParam"]):::iri c7(["es,en"]):::literal c3(["wd:Q429700"]):::iri v1 --"wdt:P31"--> v2 v1 --"wdt:P166"--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end