mirror of
https://github.com/romancm/gamebrary
synced 2024-11-24 04:03:06 +00:00
Increase games query limit to 500
This commit is contained in:
parent
cf36448c40
commit
9791f603cf
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ exports.games = functions.https.onRequest((req, res) => {
|
||||||
cover.image_id;
|
cover.image_id;
|
||||||
|
|
||||||
where id = (${ games });
|
where id = (${ games });
|
||||||
limit 50;`;
|
limit 500;`;
|
||||||
|
|
||||||
axios({
|
axios({
|
||||||
url: 'https://api-v3.igdb.com/games',
|
url: 'https://api-v3.igdb.com/games',
|
||||||
|
|
Loading…
Reference in a new issue