SQUALL to SPARQL Translator

Your SQUALL sentence:

Which person is an author of at least 10 publication-s?

The SPARQL translation:

SELECT DISTINCT ?x1 WHERE {
?x1 a :person .
{
SELECT DISTINCT ?x1 (COUNT(DISTINCT ?x3) AS ?x2) WHERE {
?x3 a :publication .
?x3 :author ?x1 .
} GROUP BY ?x1
} FILTER (?x2 >= 10) .
}

Run at DBpedia SPARQL endpoint (assuming prefixes res: for resources, : and dbo: for ontology, and dbp: for properties in addition to DBpedia namespace definitions).

Load in DBpedia SPARQL Explorer (assuming the same prefixes as above).


Enter a SQUALL sentence: