query-6924d4bae905e1c679ee102dcfb6289a

rq turtle/ttl

title:Latest outdoor gyms created that has a Video SELECT ?created ?itemLabel ?adminLabel ?youtube WHERE { ?item wdt:P6104 wd:Q107186275.

SERVICE wikibase:label { bd:serviceParam wikibase:language "en,sv,de" . }

OPTIONAL { ?item wdt:P18 ?img. } OPTIONAL { ?item wdt:P131 ?admin. } ?item wdt:P1651 ?youtubev. ?item wdt:P571 ?created. BIND(URI(CONCAT("https://www.youtube.com/watch?v=",?youtubev)) AS ?youtube) OPTIONAL { ?item wdt:P625 ?coord. } } order by desc(?created)

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#>
#title:Latest outdoor gyms created that has a Video 
SELECT  ?created ?itemLabel ?adminLabel ?youtube  WHERE {
  ?item wdt:P6104 wd:Q107186275.

  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en,sv,de" . 
  }

OPTIONAL { ?item wdt:P18 ?img. }
OPTIONAL { ?item wdt:P131 ?admin. }
?item wdt:P1651 ?youtubev. 
?item wdt:P571 ?created. 
BIND(URI(CONCAT("https://www.youtube.com/watch?v=",?youtubev)) AS ?youtube)
OPTIONAL { ?item wdt:P625 ?coord. }
} order by desc(?created)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?admin") v7("?coord") v1("?created"):::projected v3("?img") v2("?item") v6("?youtube"):::projected v5("?youtubev") c4(["bd:serviceParam"]):::iri c6(["en,sv,de"]):::literal c2(["wd:Q107186275"]):::iri v2 --"wdt:P6104"--> c2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P131".-> v4 end v2 --"wdt:P1651"--> v5 v2 --"wdt:P571"--> v1 bind0[/"concat('https://www.youtube.com/watch?v=',?youtubev)"/] v5 --o bind0 bind0 --as--o v6 subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P625".-> v7 end