query-236fdb8f47d1bc137aeb3e4e13aa4def

rq turtle/ttl

Polar 公司的设备

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 ?classLabel ?property ?propertyLabel ?targetLabel
WHERE {
  {
    SELECT ?item ?property {

      ?property wikibase:claim ?p ;
        wikibase:statementProperty ?ps .
      ?st ?ps wd:Q1500857 .
      ?item ?p ?st .
    }
    LIMIT 1000
  }
  ?item wdt:P31 ?class
  BIND(wd:Q1500857 AS ?target)
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" .
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?class") v5("?item"):::projected v2("?p") v1("?property"):::projected v3("?ps") v4("?st") v7("?target") c6(["bd:serviceParam"]):::iri c3(["wd:Q1500857"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wikibase:claim"--> v2 v1 --"wikibase:statementProperty"--> v3 v4 -->v3--> c3 v5 -->v2--> v4 v5 --"wdt:P31"--> v6 bind0[/"'wd:Q1500857'"/] bind0 --as--o v7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end