Skip to content
Snippets Groups Projects
Commit 8629c24f authored by Vytor Calixto's avatar Vytor Calixto :space_invader:
Browse files

Add years 2013 and 2014 to route school

parent 3bfa8182
No related branches found
No related tags found
1 merge request!116Release v1.0.0
Pipeline #
......@@ -29,15 +29,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