query-ac62ba3ed8f5766b2198244f9b54ebca

rq turtle/ttl

Gib mir alle Subjects and Objects of Property standards body (P1462)!

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?subject ?subjectLabel ?object ?objectLabel 
WHERE {
  ?subject wdt:P1462 ?object .
  SERVICE wikibase:label {bd:serviceParam wikibase:language "de, en"}
  } ORDER BY ASC(?subjectLabel) ASC(?objectLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?object"):::projected v2("?objectLabel"):::projected v3("?subject"):::projected v1("?subjectLabel"):::projected c3(["bd:serviceParam"]):::iri c5(["de, en"]):::literal v3 --"wdt:P1462"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end