query-ea5c44c5332d03f50ca8432e08249eff

rq turtle/ttl

Települések honlappal és annak nyelvével

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?lang ?langLabel ?website WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],hu". }  
  { ?item wdt:P31 wd:Q2590631 }  UNION  { ?item wdt:P31 wd:Q13218690 }.
  ?item p:P856 ?statement.
  ?statement ps:P856 ?website.
  OPTIONAL { ?statement pq:P407 ?lang. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v4("?lang"):::projected v2("?statement") v3("?website"):::projected c2(["bd:serviceParam"]):::iri c4(["#91;AUTO_LANGUAGE#93;,hu"]):::literal c7(["wd:Q13218690"]):::iri c6(["wd:Q2590631"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"p:direct/P31"--> c7 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"p:direct/P31"--> c6 end union0r <== or ==> union0l end v1 --"p:P856"--> v2 v2 --"p:statement/P856"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."p:qualifier/P407".-> v4 end