···11+---
22+'@urql/core': minor
33+---
44+55+Support [Apollo Federation's format](https://www.apollographql.com/docs/router/executing-operations/subscription-multipart-protocol/) for subscription results in `multipart/mixed` responses (result properties essentially are namespaced on a `payload` key)
+1
packages/core/src/types.ts
···223223 * @see {@link https://github.com/graphql/graphql-wg/blob/main/rfcs/DeferStream.md#payload-format} for the DeferStream spec
224224 */
225225 hasNext?: boolean;
226226+ payload?: Omit<ExecutionResult, 'payload'>;
226227}
227228228229/** A source of {@link OperationResult | OperationResults}, convertable to a promise, subscribable, or Wonka Source.