Skip to content

[email protected]

Pre-release
Pre-release
Compare
Choose a tag to compare
@logaretm logaretm released this 15 Jan 10:12
· 238 commits to main since this release

πŸ¦– Types

  • Enhanced the return type from the useQuery suspense API.
  • Enhanced the data and error return type to be nullable to reflect real world GQL.

πŸ†• New Features

  • added variables option to override query variables on demand (only for a single execution)
const { execute } = useQuery();

execute({
  variables: {
     // ...
   }
})