query-ea2a927730fc2a5498279574b14294e4
Sitelinks to Incubator SELECT ?item ?itemLabel ?article WHERE {
?article schema:about ?item .
?article schema:isPartOf <https://incubator.wikimedia.org/>.
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en"
}
}
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Sitelinks to Incubator
SELECT ?item ?itemLabel ?article WHERE {
?article schema:about ?item .
?article schema:isPartOf <https://incubator.wikimedia.org/>.
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("?article"):::projected
v2("?item"):::projected
c5(["bd:serviceParam"]):::iri
c3([https://incubator.wikimedia.org/]):::iri
c7(["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