query-af747e5b0ad64e809d13797746e234b6

rq turtle/ttl

items with property P9105 and no other identifiers SELECT ?item ?itemLabel ?itemDescription ?value ?st { { SELECT * { ?item wdt:P9105 ?value ; wikibase:identifiers 1 } } SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". } } ORDER BY ?itemDescription

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# items with property P9105 and no other identifiers
SELECT ?item ?itemLabel ?itemDescription ?value ?st
{
  {
       SELECT *
       {
          ?item wdt:P9105 ?value ; wikibase:identifiers 1
       }
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}
ORDER BY ?itemDescription

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?itemDescription"):::projected v3("?value"):::projected c3(["1^^xsd:integer"]):::literal c5(["bd:serviceParam"]):::iri c7(["fr"]):::literal v2 --"wdt:P9105"--> v3 v2 --"wikibase:identifiers"--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end