🦖 Types
- Enhanced the return type from the
useQuery
suspense API. - Enhanced the
data
anderror
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: {
// ...
}
})