query-0cadc14bfdbd63a0a004d49221387df8

rq turtle/ttl

¿Cuál es la cantidad, para cada plato de la peruvian cuisine, de imágenes que existen en la entidad del plato con la propiedad image (P18)? ¿Cuál es la cantidad, para cada plato de la peruvian cuisine, de imágenes que existen en la entidad del plato con la propiedad image (P18)? ¿Cuál es la cantidad, para cada plato de la peruvian cuisine, de imágenes que existen en la entidad del plato con la propiedad image (P18)? Wat is het bedrag, voor elk bord van de peruvian cuisine, van de afbeeldingen die bestaan in het bord met de eigenschap image (P18)?

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
  ?plato
  ?platoLabel
  ?conteo
{
   {
  SELECT DISTINCT ?plato {
    ?plato wdt:P361 wd:Q749847;
  }
}
  OPTIONAL{ {
  SELECT
    ?plato
    (COUNT(*) AS ?conteo)
  {
     {
  SELECT DISTINCT ?plato {
    ?plato wdt:P361 wd:Q749847;
  }
}
    ?plato wdt:P18 ?imagen.
  }
  GROUP BY ?plato
}}.
  SERVICE wikibase:label {bd:serviceParam wikibase:language "es"}.
}
ORDER BY DESC(?conteo)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?conteo"):::projected v3("?imagen") v2("?plato"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q749847"]):::iri c7(["es"]):::literal v2 --"wdt:P361"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P361".-> c2 v2 --"wdt:P18"--> v3 bind1[/"count(*)"/] bind1 --as--o v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end