query-8745532073947a5f4dbcfa9d2fd9ea84

rq turtle/ttl

Authors on the Italian Wikisource SELECT ?author ?authorLabel WHERE { ?author wdt:P31 wd:Q5 . #who are human ?page schema:about ?author. ?page schema:isPartOf https://it.wikisource.org/ . #who are on it.wikisource.org SERVICE wikibase:label { bd:serviceParam wikibase:language "it" } }

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#>
#Authors on the Italian Wikisource
SELECT ?author ?authorLabel
WHERE
{
    ?author wdt:P31 wd:Q5 . #who are human
    ?page schema:about ?author.
    ?page schema:isPartOf <https://it.wikisource.org/> . #who are on it.wikisource.org
    SERVICE wikibase:label { bd:serviceParam wikibase:language "it" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?author"):::projected v2("?page") c7(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c9(["it"]):::literal c5([https://it.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