query-df2c10f0806ed2dca6467d3e5ca5a2b3

rq turtle/ttl

ScienceSource focus list items without CC license statement SELECT ?item ?itemLabel ?date WHERE {?item wdt:P5008 wd:Q55439927; wdt:P577 ?date . MINUS {?item wdt:P275 [ ]}

        SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }

        }

ORDER BY ASC(?date)

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#>
#ScienceSource focus list items without CC license statement
SELECT ?item ?itemLabel ?date
     WHERE {?item wdt:P5008 wd:Q55439927;
                  wdt:P577 ?date .
            MINUS {?item wdt:P275 [ ]}

            SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }

            }
ORDER BY ASC(?date)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?date"):::projected v2("?item"):::projected a1((" ")) c6(["bd:serviceParam"]):::iri c2(["wd:Q55439927"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P5008"--> c2 v2 --"wdt:P577"--> v1 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P275"--> a1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end