query-705cd25bbd32fb1b56d956112e7e7c22
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT
?item ?itemLabel ?siteLink
WHERE {
?siteLink schema:about ?item;
schema:isPartOf <https://pa.wikisource.org/>;
wikibase:badge wd:Q20748093.
SERVICE wikibase:label { bd:serviceParam wikibase:language "pa,en".}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?siteLink"):::projected
c7(["bd:serviceParam"]):::iri
c9(["pa,en"]):::literal
c3([https://pa.wikisource.org/]):::iri
c5(["wd:Q20748093"]):::iri
v1 --"schema:about"--> v2
v1 --"schema:isPartOf"--> c3
v1 --"wikibase:badge"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end