mirror of https://github.com/pelias/api.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
379 B
15 lines
379 B
var peliasQuery = require('pelias-query'), |
|
check = require('check-types'); |
|
|
|
/** |
|
Population / Popularity subquery |
|
|
|
In prior versions we have had restricted the population/popularity boost |
|
to only a section of the query results. |
|
|
|
Currently it is configured to `match_all`, ie. targets all records. |
|
**/ |
|
|
|
module.exports = function( vs ){ |
|
return { 'match_all': {} }; |
|
};
|
|
|