query-99ee72038d07590fa75e852bf232f5a5

rq turtle/ttl

Endpoints1. Return a list of all items that have a URL that is an instance of a SPARQL endpoint: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . Q26261192:wd P31:pq ?st1 . ?st1 P2699:p ?sep { WHERE ?sepLabel ?sep DISTINCT SELECT 2. Return a list of all items in Wikidata that are listed as instances of SPARQL endpoint:

Use at

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 ?sep ?sepLabel

WHERE {

  ?sep wdt: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 c4(["bd:serviceParam"]):::iri c2(["wd:Q26261192"]):::iri c6(["en"]):::literal v1 --"wdt:P31"--> c2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end