User:Netha Hussain/Query list

From Wikidata
Jump to navigation Jump to search

Cats[edit]

  • List of notable cats

The following query uses these:

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

Women born in in Gothenburg[edit]

  • List of women born in Gothenburg

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, place of birth (P19)  View with Reasonator View with SQID, sex or gender (P21)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel WHERE {
      ?item wdt:P31 wd:Q5.
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
      ?item wdt:P19 wd:Q25287.
      ?item wdt:P21 wd:Q6581072.
    }
    

Proportion of biographies by gender[edit]

  • Distribution of biography articles by gender on Malayalam Wikipedia:

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, sex or gender (P21)  View with Reasonator View with SQID
    SELECT (count(?gender) as ?count) ?genderLabel
    WHERE {
      ?item wdt:P31 wd:Q5. # all humans
      ?item wdt:P21 ?gender. # who have some gender property
      
      ?article schema:about ?item. # and have an article about them
      ?article schema:isPartOf <https://ml.wikipedia.org/> . # on *Malayalam* Wikipedia
    
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    } GROUP BY ?genderLabel
    ORDER BY DESC(?count)
    

Images of poisonous mushrooms[edit]

  • Images of poisonous mushrooms

The following query uses these:

  • Properties: edibility (P789)  View with Reasonator View with SQID, image (P18)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?pic WHERE {
      ?item wdt:P789 wd:Q19888562.
      OPTIONAL { ?item wdt:P18 ?pic. }
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    

Wikimedia list articles without ml descriptions[edit]

  • List of 500 articles that contain lists and do not have ml descriptions

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID
    SELECT DISTINCT ?item WHERE {
      ?item wdt:P31 wd:Q13406463.
      OPTIONAL { ?item schema:description ?itemDescription. }
      
      SERVICE wikibase:label { bd:serviceParam wikibase:language "ml". }
      FILTER(!BOUND(?itemDescription))
    }
    LIMIT 500
    

Indian women scientists by subspeciality[edit]

  • List of scientists of Indian citizenship

The following query uses these:

Malayalam actors[edit]

  • List of actors who speak, write or sign in Malayalam
  • Use: WDFIST and missing labels in Malayalam

The following query uses these:

Diseases[edit]

  • List of diseases

Use : WDFIST image recognition

The following query uses these:

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

Wikimedia list articles[edit]

  • List of Wikimedia list articles
  • Use : Quick statements, to add ml labels

The following query uses these:

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

List of all scientists[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, occupation (P106)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID
    SELECT ?human ?humanLabel WHERE {
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
      ?human wdt:P31 wd:Q5.
      ?human wdt:P106 ?occupation.
      ?occupation wdt:P279* wd:Q901.
    }
    LIMIT 100
    

Scientists born after 1900[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, occupation (P106)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, date of birth (P569)  View with Reasonator View with SQID, date of death (P570)  View with Reasonator View with SQID
    SELECT ?human ?humanLabel ?date_of_birth ?date_of_death WHERE {
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
      ?human wdt:P31 wd:Q5.
      ?human wdt:P106 ?occupation.
      ?occupation wdt:P279* wd:Q901.
      ?human wdt:P569 ?born.
      FILTER(?born >= "1900-01-01T00:00:00Z"^^xsd:dateTime)
      OPTIONAL { ?human wdt:P569 ?date_of_birth. }
      OPTIONAL { ?human wdt:P570 ?date_of_death. }
    }
    LIMIT 100
    

Scientists born between 1500 and 1700 with age[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, occupation (P106)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, date of birth (P569)  View with Reasonator View with SQID, date of death (P570)  View with Reasonator View with SQID, country of citizenship (P27)  View with Reasonator View with SQID
    PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
    SELECT ?human ?humanLabel ?date_of_birth ?date_of_death (ROUND((?date_of_death - ?date_of_birth) / "365.2425"^^xsd:decimal) AS ?age) ?country_of_citizenship ?country_of_citizenshipLabel ?occupation ?occupationLabel WHERE {
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
      ?human wdt:P31 wd:Q5.
      ?human wdt:P106 ?occupation.
      ?occupation wdt:P279* wd:Q901.
      ?human wdt:P569 ?born.
      OPTIONAL { ?human wdt:P569 ?date_of_birth. }
      OPTIONAL { ?human wdt:P570 ?date_of_death. }
      OPTIONAL { ?human wdt:P27 ?country_of_citizenship. }
      FILTER((?born >= "1500-01-01T00:00:00Z"^^xsd:dateTime) && (?born <= "1700-01-01T00:00:00Z"^^xsd:dateTime))
      OPTIONAL { ?human wdt:P106 ?occupation. }
    }
    LIMIT 100
    

Scientists (sub classes included) with images[edit]

The following query uses these:

Most needed female writers on Malayalam Wikipedia[edit]

Note: Change the need level by decreasing the number of sitelinks

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, sex or gender (P21)  View with Reasonator View with SQID, occupation (P106)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel ?linkcount WHERE {
      ?item wdt:P31 wd:Q5;
        wdt:P21 wd:Q6581072;
        wdt:P106 wd:Q36180;
        wikibase:sitelinks ?linkcount.
      FILTER(?linkcount >= 50 )
      FILTER(NOT EXISTS {
        ?article schema:about ?item;
          schema:inLanguage "ml";
          schema:isPartOf <https://ml.wikipedia.org/>.
      })
      SERVICE wikibase:label { bd:serviceParam wikibase:language "en,de,es,ar,fr". }
    }
    GROUP BY ?item ?itemLabel ?linkcount
    ORDER BY DESC (?linkcount)
    

Indian citizens with an article in English but not in Malayalam[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, country of citizenship (P27)  View with Reasonator View with SQID
    SELECT ?item ?itemLabel (COUNT(DISTINCT ?sitelink) AS ?count) WHERE {
      ?item wdt:P31 wd:Q5;
        wdt:P27 wd:Q668.
      ?sitelink schema:about ?item.
      FILTER(EXISTS {
        ?wen schema:about ?item;
          schema:inLanguage "en".
      })
      FILTER(NOT EXISTS {
        ?wfr schema:about ?item;
          schema:inLanguage "ml".
      })
      SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en". }
    }
    GROUP BY ?item ?itemLabel
    ORDER BY DESC (?count)
    

Books in public domain[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, copyright status (P6216)  View with Reasonator View with SQID
    SELECT ?website ?websiteLabel WHERE {
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
      ?website wdt:P31 wd:Q571.
      OPTIONAL {  }
      ?website wdt:P6216 wd:Q19652.
    }
    

Branches of science with Hindi description[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID
    SELECT ?item ?len ?den ?lhi ?dhi WHERE {
      ?item wdt:P31 wd:Q2465832.
      OPTIONAL {
        ?item rdfs:label ?len.
        FILTER((LANG(?len)) = "en")
      }
      OPTIONAL {
        ?item rdfs:label ?lhi.
        FILTER((LANG(?lhi)) = "hi")
      }
      OPTIONAL {
        ?item schema:description ?den.
        FILTER((LANG(?den)) = "en")
      }
      FILTER(NOT EXISTS {
        ?item schema:description ?dhi.
        FILTER((LANG(?dhi)) = "hi")
      })
    

Number of objects related to African women[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, sex or gender (P21)  View with Reasonator View with SQID, country of citizenship (P27)  View with Reasonator View with SQID, continent (P30)  View with Reasonator View with SQID
    SELECT ?citizenshipLabel (COUNT(DISTINCT ?item) AS ?ccount)
    WHERE 
    {
      ?item wdt:P31 wd:Q5.
      ?item wdt:P21 wd:Q6581072.
      ?item wdt:P27 ?citizenship.
      ?citizenship wdt:P31 wd:Q6256.
      ?citizenship wdt:P30 wd:Q15.
      
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }
    GROUP BY ?citizenshipLabel ORDER BY DESC(?ccount)
    

Malayalam words with missing senses[edit]

The following query uses these:

  • Properties: ISO 639-1 code (P218)  View with Reasonator View with SQID
    SELECT ?l ?lemma WHERE {
       ?l a ontolex:LexicalEntry ; dct:language ?language ;
            wikibase:lemma ?lemma .
      ?language wdt:P218 'ml'
      FILTER NOT EXISTS {?l ontolex:sense ?sense }
    }
    

Malayalam adverbs with missing pronunciation audio[edit]

The following query uses these:

  • Properties: pronunciation audio (P443)  View with Reasonator View with SQID
    #title:All adverbs in Malayalam missing a pronunciation
    SELECT ?id ?label WHERE {
      ?id dct:language wd:Q36236;
        wikibase:lexicalCategory wd:Q380057;
        wikibase:lemma ?label.
      MINUS { ?id wdt:P443 ?audio. }
    }
    LIMIT 300
    

Map of villages of India[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, country (P17)  View with Reasonator View with SQID, coordinate location (P625)  View with Reasonator View with SQID
    SELECT ?village ?villageLabel ?coordinates
    WHERE {
      ?village wdt:P31/wdt:P279* wd:Q532; # Instance of (or subclass of) a village
              wdt:P17 wd:Q668;             # Located in India
              wdt:P625 ?coordinates.       # Geographical coordinates
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
    }