diff --git a/src/stories/graphql-client.js b/src/stories/graphql-client.js index 51a11b9..36cf22b 100644 --- a/src/stories/graphql-client.js +++ b/src/stories/graphql-client.js @@ -3,4 +3,9 @@ import { createClient, fetchExchange } from "urql"; export const graphqlClient = createClient({ url: "http://localhost/graphql", exchanges: [fetchExchange], + fetchOptions: { + headers: { + accept: "*/*" + } + } });