User:Aluxosm/Scratchpad

From Wikidata
Jump to navigation Jump to search

Lighthouses[edit]

Works authored by Merlin Sheldrake[edit]

#defaultView:Table

SELECT ?item ?itemLabel ?subjectLabel ?publisherLabel ?date ?doi ?pubmed ?pmcid
WHERE 
{
  ?item wdt:P50 wd:Q89428526.
  OPTIONAL {?item wdt:P921 ?subject.}
  OPTIONAL {?item wdt:P1433 ?publisher.}
  OPTIONAL {?item wdt:P577 ?date.}
  OPTIONAL {?item wdt:P356 ?doi.}
  OPTIONAL {?item wdt:P698 ?pubmed.}
  OPTIONAL {?item wdt:P932 ?pmcid.}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

ORDER BY ?date
Try it!

Breweries that are abbreviated to ABC[edit]

#defaultView:Table

SELECT ?item ?itemLabel ?countryLabel ?localityLabel
WHERE
{
  {?item wdt:P31 wd:Q131734}           # Is a brewery
  UNION
  {?item wdt:P31 wd:Q5487333}          # or a microbrewery
  
  ?item skos:altLabel ?alias.          # Get the alias (also known as)
  OPTIONAL {?item wdt:P17 ?country}.   # Get the country
  OPTIONAL {?item wdt:P131 ?locality}. # Get the locality

  FILTER(CONTAINS(?alias, "ABC"@en))   # Check that the alias is 'ABC'
    SERVICE wikibase:label {
      bd:serviceParam wikibase:language "[AUTO_LANGUAGE]"
    }
}

ORDER BY ?countryLabel
Try it!

People who have held a position in the Air Training Corps[edit]

#defaultView:Table

SELECT ?person ?personLabel ?positionLabel ?start_time ?end_time
WHERE
{
  ?person wdt:P31 wd:Q5 .                                           # human
  ?person p:P39 [ ps:P39 ?position; pq:P642 wd:Q4698217] .          # position held - ? - of - Air Training Corps
  OPTIONAL{?person p:P39 [ ps:P39 ?position; pq:P580 ?start_time]}  # start time
  OPTIONAL{?person p:P39 [ ps:P39 ?position; pq:P582 ?end_time]}    # end time
  
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}

ORDER BY (?start_time)
Try it!


Classification of sound recording devices[edit]

Classification of the class sound recording device (Q66087652)  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)
sound recording device⟩ on wikidata tree visualisation (external tool)(depth=1)
Generic queries for classes


Younger Dryas impact hypothesis [edit]

# Articles where the main subject is "Younger Dryas impact hypothesis" and the reference for that statement is a link to "The Bib"

SELECT DISTINCT ?item ?date ?itemLabel ?publisherLabel ?doi ?statements ?ids (COUNT(?cite) AS ?cites) # ?ref ?sitelinks
WHERE
{ 
  ?item wdt:P921 wd:Q1092095.
  
  ?item p:P921 ?statement.
  ?statement prov:wasDerivedFrom ?refnode.
  ?refnode   pr:P854 ?ref.
  
  FILTER(CONTAINS(STR(?ref), "younger-dryas-impact-hypothesis-bibliography-and-paper-archive")).
  
  OPTIONAL { ?item wdt:P577 ?date }
  OPTIONAL { ?item wdt:P1433 ?publisher }
  OPTIONAL { ?item wdt:P356 ?doi }
  OPTIONAL { ?item wdt:P2860 ?cite }
  OPTIONAL { ?item wikibase:statements ?statements ; wikibase:identifiers ?ids ; wikibase:sitelinks ?sitelinks }
  
  
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
GROUP BY ?item ?date ?itemLabel ?publisherLabel ?doi ?statements ?ids
ORDER BY ?date ?itemLabel
Try it!