From 0b97a52a8b4b5d534a47098f25afeaff40bebab1 Mon Sep 17 00:00:00 2001 From: Sam J Combs Date: Thu, 14 Nov 2024 01:44:46 -0500 Subject: [PATCH] chore: fix hostname --- backend/src/graphql/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/graphql/client.ts b/backend/src/graphql/client.ts index 6223aa7..496153f 100644 --- a/backend/src/graphql/client.ts +++ b/backend/src/graphql/client.ts @@ -128,7 +128,7 @@ export default class Client { const operationMatchArguments = operation.variables; const seedResponse = response; - const apiUrl = `http://localhost:${process.env.PLAY_PORT}/api/seeds`; + const apiUrl = `http://instant-mock-e2e-play:${process.env.PLAY_PORT}/api/seeds`; if (operationName === 'IntrospectionQuery') { return response;