@deep-foundation/react-hasura
v0.0.29
Published
[](https://www.npmjs.com/package/@deep-foundation/react-hasura) [](https://gitpod.io/#https://github.com/d
Maintainers
Keywords
Readme
Usage
Library
See Documentation for examples and API
usage
import providers and hooks
import { TokenProvider, useTokenController } from '@deep-foundation/deeplinks/imports/react-token';
import { ApolloClientTokenizedProvider } from '@deep-foundation/react-hasura/apollo-client-tokenized-provider';control token
const [token, setToken] = useTokenController();
// you can use any token source after itwrap page
// example from envs
export const GRAPHQL_PATH = `${process.env.NEXT_PUBLIC_HASURA_PATH}/v1/graphql`;
export const GRAPHQL_SSL = !!+process.env.NEXT_PUBLIC_HASURA_SSL;
return <TokenProvider>
<ApolloClientTokenizedProvider options={{ client: 'app-name', path: GRAPHQL_PATH, ssl: !!GRAPHQL_SSL, ws: !!process?.browser }}>
{children}
</ApolloClientTokenizedProvider>
</TokenProvider>;Maintenance
Refresh package-lock.json
This command deletes node_modules, package-lock.json and runs npm i. So everything is refreshed.
npm run package:refreshRelease a new version
npm run package:releaseAfter that it might be required to release new versions of:
- https://github.com/deep-foundation/deeplinks
