Skip runtime validation errors in SchemaLink

Hello, I am using client-side GraphQL Apollo via SchemaLink. GraphQL has runtime validation what is good, but is it possible to skip error if the types are mismatch i.e. wrong enum value, nullability or type error and show the error as warning and still proceed the data.

I am starting wrapping REST in GraphQL interface and for the first time there could be mistakes in schema, but I would like to avoid app crashing in case of runtime checking.

Here is example of this implementation GitHub - aspirisen/clientside-graphql you can change the type in schema and you will see an error.