query-0ff34d978ed836a01a0195445861e5b4

rq turtle/ttl

illustrates sitelink selection, ";" notation

title: Objekt med en webbplatslänk till Wikispecies

SELECT ?item ?itemLabel ?article WITH { SELECT * WHERE { ?article schema:about ?item ; schema:isPartOf https://species.wikimedia.org/ . } LIMIT 200 } AS %i WHERE { INCLUDE %i SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en" . } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# <span lang="en" dir="ltr" class="mw-content-ltr">illustrates sitelink selection, ";" notation</span>
#title: Objekt med en webbplatslänk till Wikispecies
SELECT ?item ?itemLabel ?article
WHERE {
   {
  SELECT *
  WHERE {
    ?article schema:about ?item ;
      schema:isPartOf <https://species.wikimedia.org/> .
  }
  LIMIT 200
}  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en" . }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?article"):::projected v2("?item"):::projected c3([https://species.wikimedia.org/]):::iri c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal v1 --"schema:about"--> v2 v1 --"schema:isPartOf"--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end