query-fbdde88fd3eebd518c0280b2d1f4ed65
Endpoints1. Return a list of all items that have a URL that is an instance of a SPARQL endpoint:
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?sep ?sepLabel
WHERE {
?sep p:P2699 ?st1 .
?st1 pq:P31 wd:Q26261192 .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?sep"):::projected
v2("?st1")
c5(["bd:serviceParam"]):::iri
c3(["wd:Q26261192"]):::iri
c7(["en"]):::literal
v1 --"p:P2699"--> v2
v2 --"p:qualifier/P31"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end