query-7ca782c40d8bbd8976723dca8b76a000

rq turtle/ttl

Szakmák hiányzó leírásssal

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?field ?fieldLabel ?linkcount WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?item wdt:P31 wd:Q28640.
  ?item wikibase:sitelinks ?linkcount .
  MINUS {
    ?item rdfs:label ?hulabel.
    FILTER((LANG(?hulabel)) = "hu")
  }
  OPTIONAL { ?item wdt:P425 ?field. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?field"):::projected v3("?hulabel") v1("?item"):::projected v2("?linkcount"):::projected c2(["bd:serviceParam"]):::iri c6(["wd:Q28640"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"wdt:P31"--> c6 v1 --"wikibase:sitelinks"--> v2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; f1[["?hulabel = 'hu'"]] f1 --> v3 v1 --"rdfs:label"--> v3 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P425".-> v4 end