query-337f6dac13076f09aabfd8b36dac0b31

rq turtle/ttl

title:Persons with LNB ID, showing label through SERVICE SELECT ?item ?itemLabel ?lnb wHERE { ?item wdt:P31 wd:Q5 . ?item wdt:P1368 ?lnb . SERVICE wikibase:label { bd:serviceParam wikibase:language "lv,mul,en". } }

Use at

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:Persons with LNB ID, showing label through SERVICE
SELECT ?item ?itemLabel ?lnb
wHERE {
  ?item wdt:P31 wd:Q5 .
  ?item wdt:P1368 ?lnb .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "lv,mul,en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?lnb"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c7(["lv,mul,en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P1368"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end