query-e650e311956f3184117580a62115b6b4

rq turtle/ttl

Properties without German label/description

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?prop ?label ?description ?datatype {
  ?prop wdt:P31/wdt:P279* wd:Q18616576 .
  ?prop wikibase:propertyType ?datatype .
#  ?prop wikibase:propertyType wikibase:ExternalId .
  OPTIONAL {
    ?prop rdfs:label ?label .
    FILTER(LANG(?label) = 'de') .
  }
  OPTIONAL {
    ?prop schema:description ?description .
    FILTER(LANG(?description) = 'de') .
  }
  FILTER(!BOUND(?label)) .
  FILTER(!BOUND(?description)) .
} ORDER BY ?propLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?datatype"):::projected v2("?description"):::projected v3("?label"):::projected v4("?prop"):::projected v1("?propLabel") a1((" ")) c4(["wd:Q18616576"]):::iri f0[["not bound(?description)"]] f0 --> v2 f1[["not bound(?label)"]] f1 --> v3 v4 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c4 v4 --"wikibase:propertyType"--> v5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v4 -."rdfs:label".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."schema:description".-> v2 end