GraphQL.js v15 no longer tolerates numbers being followed immediately with letters: - https://github.com/graphql/graphql-js/releases/tag/v15.0.0 - https://github.com/graphql/graphql-js/pull/2164 - https://github.com/graphql/graphql-spec/pull/601 This package compresses field arguments like this: ```graphql { a(b: 1, c: true) } ``` To this: ```graphql {a(b:1c:true)} ``` The `1c` creates a query validation error is it is now invalid GraphQL syntax. Until this is resolved, `graphql-query-compress` is unsafe to use 😭