From 2734dfd47129fb47b9c1730532bb2d59ad8276bd Mon Sep 17 00:00:00 2001 From: Tim Hingston Date: Mon, 23 Sep 2024 16:52:41 +1000 Subject: [PATCH] Increase fetch time --- subgraphs/destinations/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subgraphs/destinations/src/index.ts b/subgraphs/destinations/src/index.ts index 2acd3ab..840f4a8 100644 --- a/subgraphs/destinations/src/index.ts +++ b/subgraphs/destinations/src/index.ts @@ -49,7 +49,7 @@ const server = new ApolloServer({ }, async nasaTravelGuideUrl(parent: any) { return new Promise((resolve) => - setTimeout(() => resolve(parent.nasaTravelGuideUrl), 100) + setTimeout(() => resolve(parent.nasaTravelGuideUrl), 500) ); }, __resolveReference(rep) {