query-bb8aa16b2300e23cb3030eea976393a9

rq turtle/ttl

Q21025364 : WikiProject SELECT ?item ?itemLabel ?aboutName WHERE { ?item wdt:P31 wd:Q21025364. ?article schema:about ?item ; schema:isPartOf https://www.wikidata.org/ ; schema:name ?aboutName . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Q21025364 : WikiProject
SELECT ?item ?itemLabel ?aboutName WHERE {
  ?item wdt:P31 wd:Q21025364.
  ?article schema:about ?item ; schema:isPartOf <https://www.wikidata.org/> ;  schema:name ?aboutName .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?aboutName"):::projected v2("?article") v1("?item"):::projected c5([https://www.wikidata.org/]):::iri c8(["bd:serviceParam"]):::iri c2(["wd:Q21025364"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P31"--> c2 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c5 v2 --"schema:name"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end