query-639c4649da6d791a96c2301682d31d1d

rq turtle/ttl

PropertiesISO 639-1 code (P218)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?lemma ?lcatLabel WHERE {
  ?item a ontolex:LexicalEntry
    ; dct:language ?language
    ; wikibase:lexicalCategory ?lcat
    ; wikibase:lemma ?lemma .
  ?language wdt:P218 'nl' .
  FILTER (?lcat = wd:Q24905)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
} order by ?lemma

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?item"):::projected v4("?language") v2("?lcat") v1("?lemma"):::projected c10(["bd:serviceParam"]):::iri c12(["#91;AUTO_LANGUAGE#93;"]):::literal c3(["ontolex:LexicalEntry"]):::iri c8(["nl"]):::literal f0[["?lcat = 'wd:Q24905'"]] f0 --> v2 v3 --"a"--> c3 v3 --"dct:language"--> v4 v3 --"wikibase:lexicalCategory"--> v2 v3 --"wikibase:lemma"--> v1 v4 --"wdt:P218"--> c8 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end