query-751774d60f7a30c18ecfc83b85895fbc

rq turtle/ttl

Others (in any language) so it must be in the results. (P1559)name in native language has no (Q7036597)Nikolas Englezou . (Q8216)Greek alphabet -> (P282)writing system which is an item that have (Q97619413)Nikolas -> (P735)given name has (Q7036597)Nikolas Englezou . For example, (P1559)name in native language , but they don't have (Q8216)Greek alphabet -> (P282)writing system -> a value that have (P735)given name a) a query with all items that have TODO

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#>
SELECT ?item ?itemLabel ?givenname ?givennameLabel
WHERE
{
  ?item wdt:P735 ?givenname .
  ?givenname wdt:P282 wd:Q8216 . # writing system is Greek alphabet
  MINUS
  {
    ?item wdt:P1559 [] . # No name in native language
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],el,en" . }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?givenname"):::projected v1("?item"):::projected a1((" ")) c8(["#91;AUTO_LANGUAGE#93;,el,en"]):::literal c6(["bd:serviceParam"]):::iri c3(["wd:Q8216"]):::iri v1 --"wdt:P735"--> v2 v2 --"wdt:P282"--> c3 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P1559"--> a1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end