From e51e89827be9422d7c3df7c012d61e0f82f0fb6a Mon Sep 17 00:00:00 2001 From: Arunoda Susiripala Date: Tue, 27 Oct 2015 06:49:12 +0530 Subject: [PATCH] Allow to pass cookies from the client This allows to back a auth middleware in-front of the GraphiQL UI. --- src/renderGraphiQL.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderGraphiQL.js b/src/renderGraphiQL.js index 566a2316..23435068 100644 --- a/src/renderGraphiQL.js +++ b/src/renderGraphiQL.js @@ -84,6 +84,7 @@ add "&raw" to the end of the URL within a browser. return fetch(fetchURL, { method: 'post', headers: { 'Content-Type': 'application/json' }, + credentials: 'same-origin', body: JSON.stringify(graphQLParams), }).then(function (response) { return response.json()