Talk:Q1110794

From Wikidata
Jump to navigation Jump to search

Autodescription — daily newspaper (Q1110794)

description: type of newspaper usually published daily
Useful links:
Classification of the class daily newspaper (Q1110794)  View with Reasonator View with SQID
For help about classification, see Wikidata:Classification.
Parent classes (classes of items which contain this one item)
Subclasses (classes which contain special kinds of items of this class)
daily newspaper⟩ on wikidata tree visualisation (external tool)(depth=1)
Generic queries for classes
See also


SPARQL examples[edit]

List all daily newspapers in the united kingdom that do not have their political leaning recorded[edit]

SELECT DISTINCT ?item ?itemLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
  {
    SELECT DISTINCT ?item WHERE {
      ?item p:P31 ?statement0.
      ?statement0 (ps:P31/(wdt:P279*)) wd:Q1110794.
      ?item p:P17 ?statement1.
      ?statement1 (ps:P17/(wdt:P279*)) wd:Q145.
      MINUS {
        ?item p:P1387 ?statement2.
        ?statement2 (ps:P1387/(wdt:P279*)) _:anyValueP1387.
      }
    }
    LIMIT 100
  }
}
Try it!


List newspapers without an ID on the Allsides database that list political leaning[edit]

SELECT ?item ?item_label ?check_url WHERE {
  
  ?item wdt:P31 wd:Q1110794 .
  MINUS {?item wdt:P10006 [] } .
  ?item rdfs:label ?item_label FILTER(lang(?item_label) = 'en') .

  wd:P10006 wdt:P4354 ?fmt .
  BIND(IRI(REPLACE(str(?item_label), '(^.*)', ?fmt)) AS ?check_url) .
} LIMIT 50
Try it!