query-4c7c6217de4a43946c29b9f935acbd07

rq turtle/ttl

title:Persons born in Riga with LNB ID and with a birthdate SELECT ?item ?itemLabel ?lnb ?birthdate wHERE { ?item wdt:P31 wd:Q5 . ?item wdt:P19 wd:Q1773 . ?item wdt:P569 ?birthdate . ?item wdt:P1368 ?lnb . SERVICE wikibase:label { bd:serviceParam wikibase:language "lv,mul,en". } } ORDER BY ?itemLabel ?birthdate

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 born in Riga with LNB ID and with a birthdate
SELECT ?item ?itemLabel ?lnb ?birthdate
wHERE {
  ?item wdt:P31 wd:Q5 .
  ?item wdt:P19 wd:Q1773 .
  ?item wdt:P569 ?birthdate .
  ?item wdt:P1368 ?lnb .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "lv,mul,en". }
}
ORDER BY ?itemLabel ?birthdate

Query found at

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