query-045943dd351e255157ec7636a6ed512d
TODO
Use at
- https://query.wikidata.org/sparql
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 ?YouTube_video ?YouTube_videoLabel ?publication_date WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?YouTube_video wdt:P31 wd:Q63412991;
wdt:P123 wd:Q30598122.
{ ?YouTube_video wdt:P577 ?publication_date. }
} ORDER BY ?publication_date
LIMIT 750
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?YouTube_video"):::projected
v1("?publication_date"):::projected
c2(["bd:serviceParam"]):::iri
c6(["wd:Q63412991"]):::iri
c8(["wd:Q30598122"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"wdt:P31"--> c6
v2 --"wdt:P123"--> c8
v2 --"wdt:P577"--> v1