query-a925a2b5920bcc782c5ca51976a6e754
3GPP
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 ?instanceOf ?instanceOfLabel {
# items with publisher (P123) or standards body (P1462) being 3GPP (Q229804)
?item (wdt:P123+|wdt:P1462+) wd:Q229804.
OPTIONAL { ?item wdt:P31 ?instanceOf }
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;
v2("?instanceOf"):::projected
v1("?item"):::projected
c2(["wd:Q229804"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P1462"--> c2
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P123"--> c2
end
union0r <== or ==> union0l
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P31".-> v2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end