···11+---
22+'@urql/next': patch
33+---
44+55+Add type for hasNext to the query-state in urql-next
+2
packages/next-urql/src/useQuery.ts
···110110 data?: Data;
111111 /** The {@link OperationResult.error} for the executed query. */
112112 error?: CombinedError;
113113+ /** The {@link OperationResult.hasNext} for the executed query. */
114114+ hasNext: boolean;
113115 /** The {@link OperationResult.extensions} for the executed query. */
114116 extensions?: Record<string, any>;
115117 /** The {@link Operation} that the current state is for.