1.0.9 • Published 3 years ago

apollo-jotai v1.0.9

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Jotai Apollo

Instalation

$ yarn add apollo-jotai

$ npm apollo-jotai

Usage

  import { useAtomWithApollo, jotaiApolloAtom } from 'apollo-jotai'

const atom = jotaiApolloAtom(async (get, set, client) => {
  const { data } = await client.query<Query, QueryVariables>({ query: QueryDocument })

  return data
})

  const Component = () => {
    const [{ data, loading, error }, request] = useAtomWithApollo(atom)

    useEffect(() => {
      request()
    }, [])

    ...
  }
1.0.9

3 years ago

1.0.8

3 years ago

1.0.5

3 years ago

1.0.2

3 years ago

1.0.0

3 years ago