query-a5d7665436a3ed42198d7347ff604648
title: Forms of nouns in Hebrew that are both feminine and masculine
by Uziel302
SELECT ?lexemeId ?lemma ?form ?word WHERE { ?lexemeId dct:language wd:Q9288; wikibase:lexicalCategory wd:Q1084; wikibase:lemma ?lemma; ontolex:lexicalForm ?form. ?form wikibase:grammaticalFeature wd:Q499327, wd:Q1775415; ontolex:representation ?word. }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX dct: <http://purl.org/dc/terms/>
#title: Forms of nouns in Hebrew that are both feminine and masculine
# by Uziel302
SELECT ?lexemeId ?lemma ?form ?word WHERE {
?lexemeId dct:language wd:Q9288;
wikibase:lexicalCategory wd:Q1084;
wikibase:lemma ?lemma;
ontolex:lexicalForm ?form.
?form wikibase:grammaticalFeature wd:Q499327, wd:Q1775415;
ontolex:representation ?word.
}
Query found at
- https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/queries/examples
- https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/queries/examples/en
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?form"):::projected
v2("?lemma"):::projected
v1("?lexemeId"):::projected
v4("?word"):::projected
c2(["wd:Q9288"]):::iri
c8(["wd:Q499327"]):::iri
c4(["wd:Q1084"]):::iri
c9(["wd:Q1775415"]):::iri
v1 --"dct:language"--> c2
v1 --"wikibase:lexicalCategory"--> c4
v1 --"wikibase:lemma"--> v2
v1 --"ontolex:lexicalForm"--> v3
v3 --"wikibase:grammaticalFeature"--> c8
v3 --"wikibase:grammaticalFeature"--> c9
v3 --"ontolex:representation"--> v4