User:YULdigitalpreservation/Whales

From Wikidata
Jump to navigation Jump to search

New page for Southern Resident data

Orcas

[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?itemAltLabel
    WHERE 
    {
      ?item wdt:P31 wd:Q26843.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Orcas that have date of passing

[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, date of death (P570)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?itemAltLabel ?deathdate
    WHERE 
    {
      ?item wdt:P31 wd:Q26843.
      ?item wdt:P570 ?deathdate.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Member of pod and optional mother

[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, member of (P463)  View with Reasonator View with SQID, mother (P25)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?pod ?podLabel ?mother ?motherLabel
    WHERE 
    {
      ?item wdt:P31 wd:Q26843.
      ?item wdt:P463 ?pod. 
      OPTIONAL {?item wdt:P25 ?mother.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Mothers

[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, mother (P25)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel  ?mother ?motherLabel
    WHERE 
    {
      ?item wdt:P31 wd:Q26843.
      OPTIONAL {?item wdt:P25 ?mother.}
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }