Skip to content
Snippets Groups Projects
Commit e1882e94 authored by Gabriel Ruschel's avatar Gabriel Ruschel
Browse files

School years

parent cc6a6844
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -35,15 +35,13 @@ let rqfCount = new ReqQueryFields();
schoolApp.get('/year_range', cache('15 day'), (req, res, next) => {
req.sql.from('escola')
.field('MIN(escola.ano_censo)', 'start_year')
.field('MAX(escola.ano_censo)', 'end_year')
.where('escola.ano_censo > 2014');
.field('MAX(escola.ano_censo)', 'end_year');
next();
}, query, response('range'));
schoolApp.get('/years', cache('15 day'), (req, res, next) => {
req.sql.from('escola').
field('DISTINCT escola.ano_censo', 'year')
.where('escola.ano_censo > 2014');
field('DISTINCT escola.ano_censo', 'year');
next();
}, query, response('years'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment