Defined in: packages/query-core/src/hydration.ts:61
Options for hydrate, controlling the default options applied to queries/mutations restored from a DehydratedState, and how to reverse any transformation applied by DehydrateOptions.serializeData.
optional defaultOptions: object;Defined in: packages/query-core/src/hydration.ts:62
optional deserializeData: TransformerFn;Transforms a query's data after it is read from the dehydrated state, reversing serializeData.
optional mutations: MutationOptions<unknown, Error, unknown, unknown>;Default options merged into every mutation restored from the dehydrated state.
optional queries: QueryOptions<unknown, Error, unknown, readonly unknown[], never>;Default options merged into every query restored from the dehydrated state.