query-75855f9a17586ab14921b9ba754be2b8
PropertiesISO 639-1 code (P218)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?lid ?lemma ?lcatLabel WHERE {
?lid a ontolex:LexicalEntry
; dct:language ?language
; wikibase:lexicalCategory ?lcat
; wikibase:lemma ?lemma .
?language wdt:P218 'nl' .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],nl". }
} order by ?lemma
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?language")
v4("?lcat")
v1("?lemma"):::projected
v2("?lid"):::projected
c9(["bd:serviceParam"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,nl"]):::literal
c2(["ontolex:LexicalEntry"]):::iri
c7(["nl"]):::literal
v2 --"a"--> c2
v2 --"dct:language"--> v3
v2 --"wikibase:lexicalCategory"--> v4
v2 --"wikibase:lemma"--> v1
v3 --"wdt:P218"--> c7
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end