query-d941f804921c6cd84410377a66b96bc0
title: Formes en hébreu à la fois féminines et masculines
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: Formes en hébreu à la fois féminines et masculines
# 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
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