Skip to content

How is it possible to update the client with a new JWT in headers? #126

Description

@t-lock
<script lang="ts">
  import { ApolloClient, InMemoryCache } from "@apollo/client";
  import { setClient } from "svelte-apollo";

  export let token: string = "";

  const cache = new InMemoryCache();

  const client = new ApolloClient({
    uri: import.meta.env.VITE_HASURA_GQL_URL,
    cache,
    headers: {
      Authorization: `Bearer ${token}`,
    },
  });
  setClient(client);
</script>

<slot />

Passing in an updated token via props does not cause a re-render. Since the whole basis of this library is passing the Client through Context, and Context only being able to be set during component initialization, I do not see how it is possible to update the Client after initialization, such as when a new token is provided through a refresh token operation.

Please advise.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions