query-758d7048b0077ce32fd531846646e34c
title: List of external identifier properties for lexemes SELECT ?prop ?propLabel WHERE { ?prop wdt:P31/wdt:P279* wd:Q54076056 . # lexeme property ?prop wdt:P31 wd:Q19847637 . # external identifier SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # Helps get the label in your language, if not, then en language }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: List of external identifier properties for lexemes
SELECT ?prop ?propLabel
WHERE
{
?prop wdt:P31/wdt:P279* wd:Q54076056 . # lexeme property
?prop wdt:P31 wd:Q19847637 . # external identifier
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # Helps get the label in your language, if not, then en language
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?prop"):::projected
a1((" "))
c4(["wd:Q19847637"]):::iri
c6(["bd:serviceParam"]):::iri
c3(["wd:Q54076056"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P31"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end