query-4f9d41ba9cee1044ab7ed173802f85de

rq turtle/ttl

youtube videos published by The Great War (Q30598122) 15:25, 18 January 2021 (UTC)) talk (Tetizeraz QID, and want to visualize it. (Q63412991)YouTube video I just created around 700 QIDs with the 11:35, 19 January 2021 (UTC)) talk (Tetizeraz for not being clear. I made this SPARQL query but I still am getting the old QIDs deleted from older batches (I made a mistake in those batches). Why is that? Dipsacus fullonumHi, sorry 18:35, 18 January 2021 (UTC)) talk (Dipsacus fullonumWhat query do you want? --

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#>
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.
  OPTIONAL { ?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 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P577".-> v1 end