query-569e9bd5f3c28138e3255283b22bd38c
Items that are about a U.S. supreme court decision and have a Wikisource (en.wikisource) page
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 ?article
WHERE
{
?item wdt:P31 wd:Q19692072 .
?article schema:about ?item ;
schema:isPartOf <https://en.wikisource.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;
v2("?article"):::projected
v1("?item"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q19692072"]):::iri
c9(["en"]):::literal
c5([https://en.wikisource.org/]):::iri
v1 --"wdt:P31"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end