query-241b79bda60345d319e6742305087d2a

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#>
#defaultView:Map{"layer":"?linguisticFamily"}
SELECT ?item ?itemLabel ?linguisticFamily ?linguisticFamilyLabel ?coordenadas

WHERE {
  ?item wdt:P31 wd:Q2555896;
    wdt:P407 ?linguisticFamily.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  OPTIONAL { ?item wdt:P625 ?coordenadas. }
}
GROUP BY ?item ?itemLabel ?linguisticFamily ?linguisticFamilyLabel ?coordenadas

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?coordenadas"):::projected v1("?item"):::projected v2("?linguisticFamily"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q2555896"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P407"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P625".-> v3 end