query-449f1e298f70ac0c78705657555a5027
SparQL EndpointsFind other SparQL Endpoints.
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 ?endpoint ?prop ?endpLabel
WHERE {
#?endpoint wdt:P31 wd:Q26261192 .
?endpoint ?prop wd:Q26261192 .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?endpoint"):::projected
v2("?prop"):::projected
c3(["bd:serviceParam"]):::iri
c1(["wd:Q26261192"]):::iri
c5(["en"]):::literal
v1 -->v2--> c1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end