query-88897fc7e22ba0f90e901c2864d00804
Authors from a country who died 100 or more years ago and expired copyright status is not set
SELECT DISTINCT ?item ?itemLabel ( GROUP_CONCAT(DISTINCT ?occupationLabel; SEPARATOR=", ") AS ?occupations ) # Concatenate occupations
WHERE {
?item wdt:P31 wd:Q5 . # Instance of human being...
VALUES ?occupation { wd:Q36180 wd:Q1028181 wd:Q1281618 wd:Q49757 wd:Q1930187 wd:Q639669 wd:Q36834 }. # List of occupations
?item wdt:P106 ?occupation . # The person has those occupations
{ ?item wdt:P19/wdt:P131* wd:Q77 . } # The person was born in Uruguay or in a place located in the administrative territorial entity of Uruguay...
UNION # ...or...
{ ?item wdt:P27 wd:Q77 . } # ...their country of citizenship is Uruguay.
?item wdt:P570 ?death . # The person died...
FILTER ( ?death < "1924-01-01"^^xsd:dateTime ) # ...before a certain date.
MINUS { ?item wdt:P7763 ?copyrightStatus. } # The item of the person has not a certain property.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?item rdfs:label ?itemLabel. # Necessary to concatenate occupations
?occupation rdfs:label ?occupationLabel. # Necessary to concatenate occupations
}
}
GROUP BY ?item ?itemLabel # Group results for the same person.
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Authors from a country who died 100 or more years ago and expired copyright status is not set
SELECT DISTINCT ?item ?itemLabel ( GROUP_CONCAT(DISTINCT ?occupationLabel; SEPARATOR=", ") AS ?occupations ) # Concatenate occupations
WHERE {
?item wdt:P31 wd:Q5 . # Instance of human being...
VALUES ?occupation { wd:Q36180 wd:Q1028181 wd:Q1281618 wd:Q49757 wd:Q1930187 wd:Q639669 wd:Q36834 }. # List of occupations
?item wdt:P106 ?occupation . # The person has those occupations
{ ?item wdt:P19/wdt:P131* wd:Q77 . } # The person was born in Uruguay or in a place located in the administrative territorial entity of Uruguay...
UNION # ...or...
{ ?item wdt:P27 wd:Q77 . } # ...their country of citizenship is Uruguay.
?item wdt:P570 ?death . # The person died...
FILTER ( ?death < "1924-01-01"^^xsd:date ) # ...before a certain date.
MINUS { ?item wdt:P7763 ?copyrightStatus. } # The item of the person has not a certain property.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?item rdfs:label ?itemLabel. # Necessary to concatenate occupations
?occupation rdfs:label ?occupationLabel. # Necessary to concatenate occupations
}
}
GROUP BY ?item ?itemLabel # Group results for the same person.