query-003af295c59d1dd257c92c91d1695ef9

rq turtle/ttl

Propriété

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?wikia WHERE {
  ?item wdt:P6262 ?wikia .
  OPTIONAL { ?item wdt:P17 ?pays }
  OPTIONAL { ?item wdt:P1824 ?p1824 }
  OPTIONAL { ?item wdt:P528 ?p528 }
  FILTER(contains(?wikia,"routes:"))
  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" . }
} ORDER BY ?wikia

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v4("?p1824") v5("?p528") v3("?pays") v1("?wikia"):::projected c7(["bd:serviceParam"]):::iri c9(["fr"]):::literal f0[["contains(?wikia,'routes:')"]] f0 --> v1 v2 --"wdt:P6262"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P17".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1824".-> v4 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P528".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end