query-4c125bf128aa1e35c9222cd3809fd306
TODO
Use at
- https://query.wikidata.org/sparql
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 ?itemDescription ?publisher ?publisherLabel ?standardsBody ?standardsBodyLabel ?instanceOf ?instanceOfLabel {
# ?items subclass of (P279) technical standard (Q317623)
?item wdt:P279* wd:Q317623.
# MINUS ?items subclass of (P279) GOST (Q1349015) - these are not english
MINUS { ?item wdt:P279+ wd:Q1349015. }
OPTIONAL { ?item wdt:P123 ?publisher }
OPTIONAL { ?item wdt:P1462 ?standardsBody }
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?publisher"):::projected
v3("?standardsBody"):::projected
c7(["bd:serviceParam"]):::iri
c3(["wd:Q1349015"]):::iri
c9(["en"]):::literal
c2(["wd:Q317623"]):::iri
v1 --"wdt:P279"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P279"--> c3
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P123".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P1462".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end