From 9791f603cff4c88d3c2a8fd3b8dfbbcfd3fc01e9 Mon Sep 17 00:00:00 2001 From: Roman Cervantes Date: Tue, 3 Sep 2019 15:54:55 -0700 Subject: [PATCH] Increase games query limit to 500 --- functions/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/index.js b/functions/index.js index 33bbdb93..835fb79a 100755 --- a/functions/index.js +++ b/functions/index.js @@ -40,7 +40,7 @@ exports.games = functions.https.onRequest((req, res) => { cover.image_id; where id = (${ games }); - limit 50;`; + limit 500;`; axios({ url: 'https://api-v3.igdb.com/games',