···11+---
22+'@urql/core': minor
33+---
44+55+Update support for the "Incremental Delivery" payload specification, accepting the new `incremental` property on execution results, as per the specification. This will expand support for newer APIs implementing the more up-to-date specification.
+5
.changeset/nine-dancers-film.md
···11+---
22+'@urql/core': minor
33+---
44+55+Update default `Accept` header to include `multipart/mixed` and `application/graphql-response+json`. The former seems to now be a defactor standard-accepted indication for support of the "Incremental Delivery" GraphQL over HTTP spec addition/RFC, and the latter is an updated form of the older `Content-Type` of GraphQL responses, so both the old and new one should now be included.
···11+// NOTE: This currently fails because responses for @defer/@stream are not sent
22+// as multipart responses, but the request fails silently with an empty JSON response payload
33+44+const { ApolloServer } = require('@apollo/server');
55+const { startStandaloneServer } = require('@apollo/server/standalone');
66+const { schema } = require('./schema');
77+88+const server = new ApolloServer({ schema });
99+1010+startStandaloneServer(server, {
1111+ listen: {
1212+ port: 3004,
1313+ },
1414+});
···11-// Vitest Snapshot v1
11+// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2233exports[`on error > ignores the error when a result is available 1`] = `
44{