query-c26c8556c14101c5b8dab4f2fa03e812

rq turtle/ttl

Moldovans: no given name property in item page SELECT ?item ?itemLabel WHERE { ?item wdt:P31 wd:Q5 . ?item wdt:P27 wd:Q217 . MINUS { ?item wdt:P735 [] } . SERVICE wikibase:label { bd:serviceParam wikibase:language "en,ro,de,es,fr,ru" } } GROUP BY ?item ?itemLabel ORDER BY ?itemLabel

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#>
#Moldovans: no given name property in item page
SELECT ?item ?itemLabel WHERE {
    ?item wdt:P31 wd:Q5 .
    ?item wdt:P27 wd:Q217 .
    MINUS { ?item wdt:P735 [] } .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,ro,de,es,fr,ru" }
}
GROUP BY ?item ?itemLabel
ORDER BY ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?itemLabel"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c9(["en,ro,de,es,fr,ru"]):::literal c4(["wd:Q217"]):::iri c2(["wd:Q5"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P27"--> c4 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P735"--> a1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end