query-0bb5dd8dd181c4270f80bcafa4329b72

rq turtle/ttl

title:Lexemes in English and the names of their lexical categories SELECT ?lexeme ?category ?categoryLabel { ?lexeme dct:language wd:Q1860 . ?lexeme wikibase:lexicalCategory ?category . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Lexemes in English and the names of their lexical categories
SELECT ?lexeme ?category ?categoryLabel {
    ?lexeme dct:language wd:Q1860 .
    ?lexeme wikibase:lexicalCategory ?category .
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?category"):::projected v1("?lexeme"):::projected c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q1860"]):::iri v1 --"dct:language"--> c2 v1 --"wikibase:lexicalCategory"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end