get_parents_occupation = ({
occupation = "Q33999",
citizenship = "Q142",
birthyear = 1970
}) => {
const query = `PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema: <http://schema.org/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT DISTINCT ?parentOccupation ?parentOccupationLabel (COUNT(?item) as ?count) WHERE {
?item wdt:P31 wd:Q5;
wdt:P106/wdt:P279* wd:${occupation};
wdt:P27 wd:${citizenship};
wdt:P569 ?birthdate;
rdfs:label ?itemLabel FILTER(lang(?itemLabel) = "fr") .
?sitelink schema:about ?item;
schema:isPartOf <https://fr.wikipedia.org/>.
FILTER(YEAR( ?birthdate ) >= ${birthyear} )
BIND(YEAR(?birthdate) AS ?year)
?item (wdt:P22|wdt:P25) ?parent.
?parentlink schema:about ?parent;
schema:isPartOf <https://fr.wikipedia.org/>.
?parent rdfs:label ?parentLabel ;
wdt:P106 ?parentOccupation.
?parentOccupation rdfs:label ?parentOccupationLabel .
FILTER(lang(?parentLabel) = "fr")
FILTER(lang(?parentOccupationLabel) = "fr")
}
GROUP BY ?parentOccupation ?parentOccupationLabel
ORDER BY DESC(?count)`;
return fetch(
`https://qlever.cs.uni-freiburg.de/api/wikidata?query=${encodeURIComponent(
query
)}`,
{ headers: { accept: "application/sparql-results+json" } }
)
.then((response) => response.json())
.then((res) =>
aq.from(
res.results.bindings.map((d) => ({
parentOccupation: d.parentOccupation.value,
parentOccupationLabel: d.parentOccupationLabel.value,
count: d.count.value
}))
)
);
}