query-500830422c804c7fd7094305225454c6
TODO
Use at
- https://query.wikidata.org/sparql
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#>
SELECT ?item ?itemLabel ?itemDescription WHERE {
?item wdt:P31 wd:Q5 .
[] schema:about ?item; schema:isPartOf <https://pa.wikisource.org/>; schema:name ?ws .
MINUS { [] schema:about ?item; schema:isPartOf <https://pa.wikipedia.org/> }
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;
v1("?item"):::projected
v2("?ws")
a1((" "))
a2((" "))
c9(["bd:serviceParam"]):::iri
c11(["pa,en"]):::literal
c2(["wd:Q5"]):::iri
c5([https://pa.wikisource.org/]):::iri
c7([https://pa.wikipedia.org/]):::iri
v1 --"wdt:P31"--> c2
a1 --"schema:about"--> v1
a1 --"schema:isPartOf"--> c5
a1 --"schema:name"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
a2 --"schema:about"--> v1
a2 --"schema:isPartOf"--> c7
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end