User:Hameryko/EO

Substantivoj edit

select ?lexemeId ?lemma ?nomSing ?nomPlur ?acuSing ?acuPlur WHERE {
  ?lexemeId <http://purl.org/dc/terms/language> wd:Q143;
            wikibase:lexicalCategory wd:Q1084;
            wikibase:lemma ?lemma.
  # Nominativo singular
  ?lexemeId ontolex:lexicalForm ?form1 .
  ?form1 wikibase:grammaticalFeature wd:Q110786;
         wikibase:grammaticalFeature wd:Q131105;
         ontolex:representation ?nomSing .
  # Nominativo plural
  ?lexemeId ontolex:lexicalForm ?form2 .
  ?form2 wikibase:grammaticalFeature wd:Q146786;
         wikibase:grammaticalFeature wd:Q131105;
         ontolex:representation ?nomPlur .
  # Acusativo singular
  ?lexemeId ontolex:lexicalForm ?form3 .
  ?form3 wikibase:grammaticalFeature wd:Q110786;
         wikibase:grammaticalFeature wd:Q146078;
         ontolex:representation ?acuSing .
  # Acusativo plural
  ?lexemeId ontolex:lexicalForm ?form4 .
  ?form4 wikibase:grammaticalFeature wd:Q146786;
         wikibase:grammaticalFeature wd:Q146078;
         ontolex:representation ?acuPlur .
}

Substantivoj (without forms) edit

select ?lexemeId ?lemma ?nomSing ?nomPlur ?acuSing ?acuPlur WHERE {
  ?lexemeId <http://purl.org/dc/terms/language> wd:Q143;
            wikibase:lexicalCategory wd:Q1084;
            wikibase:lemma ?lemma.
  # Nominativo singular
  MINUS{
  ?lexemeId ontolex:lexicalForm ?form1 .
  ?form1 wikibase:grammaticalFeature wd:Q110786;
         wikibase:grammaticalFeature wd:Q131105;
         ontolex:representation ?nomSing .
  # Nominativo plural
  ?lexemeId ontolex:lexicalForm ?form2 .
  ?form2 wikibase:grammaticalFeature wd:Q146786;
         wikibase:grammaticalFeature wd:Q131105;
         ontolex:representation ?nomPlur .
  # Acusativo singular
  ?lexemeId ontolex:lexicalForm ?form3 .
  ?form3 wikibase:grammaticalFeature wd:Q110786;
         wikibase:grammaticalFeature wd:Q146078;
         ontolex:representation ?acuSing .
  # Acusativo plural
  ?lexemeId ontolex:lexicalForm ?form4 .
  ?form4 wikibase:grammaticalFeature wd:Q146786;
         wikibase:grammaticalFeature wd:Q146078;
         ontolex:representation ?acuPlur .
    }
}

Verboj edit

select ?lexemeId ?lemma ?infinitivo ?presente ?futuro ?pasado ?condicional ?volitivo WHERE {
  ?lexemeId <http://purl.org/dc/terms/language> wd:Q143;
            wikibase:lexicalCategory wd:Q24905;
            wikibase:lemma ?lemma.
  # Infinitivo
  ?lexemeId ontolex:lexicalForm ?form1 .
  ?form1 wikibase:grammaticalFeature wd:Q179230;
         ontolex:representation ?infinitivo .
  # Presente
  ?lexemeId ontolex:lexicalForm ?form2 .
  ?form2 wikibase:grammaticalFeature wd:Q192613;
         ontolex:representation ?presente .
  # Futuro
  ?lexemeId ontolex:lexicalForm ?form3 .
  ?form3 wikibase:grammaticalFeature wd:Q501405;
         ontolex:representation ?futuro .
  # Pasado
  ?lexemeId ontolex:lexicalForm ?form4 .
  ?form4 wikibase:grammaticalFeature wd:Q1994301;
         ontolex:representation ?pasado .
  # Condicional
  ?lexemeId ontolex:lexicalForm ?form5 .
  ?form5 wikibase:grammaticalFeature wd:Q625581;
         ontolex:representation ?condicional .
  # Volitivo
  ?lexemeId ontolex:lexicalForm ?form6 .
  ?form6 wikibase:grammaticalFeature wd:Q10716592;
         ontolex:representation ?volitivo .
}