query-9b9fef549714c6cd820a7fdc40dd4542

rq turtle/ttl

Modelos o series de modelos de automóviles de Peugeot o Citröen

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 DISTINCT ?marca ?marcaLabel
                ?modelo ?modeloLabel ?imagen
WHERE {
     VALUES ?marca {wd:Q6742 wd:Q6746}
     VALUES ?tipo {wd:Q59773381 wd:Q3231690}
     ?modelo wdt:P176 ?marca ;
          wdt:P31 ?tipo ;
          wdt:P18 ?imagen .
     SERVICE wikibase:label
         { bd:serviceParam wikibase:language "en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?imagen"):::projected v1("?marca"):::projected v3("?modelo"):::projected v2("?tipo") c5(["bd:serviceParam"]):::iri c7(["en"]):::literal bind0[/VALUES ?marca/] bind0-->v1 bind00(["wd:Q6742"]) bind00 --> bind0 bind01(["wd:Q6746"]) bind01 --> bind0 bind1[/VALUES ?tipo/] bind1-->v2 bind10(["wd:Q59773381"]) bind10 --> bind1 bind11(["wd:Q3231690"]) bind11 --> bind1 v3 --"wdt:P176"--> v1 v3 --"wdt:P31"--> v2 v3 --"wdt:P18"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end