This repository was archived by the owner on Feb 6, 2025. It is now read-only.

Description
Per graphql/graphql-js#1169
This replaces:
type Foo implements Bar, Baz { field: Type }
With:
type Foo implements Bar & Baz { field: Type }
With no changes to the common case of implementing a single interface.
We may need to update to a more up-to-date GraphQL core library if one exists.