query-155514b263104e2cdc0da8d368c5ab8a
Persones de les Seychelles amb article SELECT DISTINCT ?persona ?personaLabel ?article WHERE { ?persona wdt:P27 wd:Q1042. ?article schema:about ?persona. ?article schema:isPartOf https://ca.wikipedia.org/. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es" . } }
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#>
# Persones de les Seychelles amb article
SELECT DISTINCT ?persona ?personaLabel ?article
WHERE {
?persona wdt:P27 wd:Q1042.
?article schema:about ?persona.
?article schema:isPartOf <https://ca.wikipedia.org/>.
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es" . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?persona"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q1042"]):::iri
c5([https://ca.wikipedia.org/]):::iri
c9(["#91;AUTO_LANGUAGE#93;,ca,en,es"]):::literal
v1 --"wdt:P27"--> 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