We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Before going into more detail here:
I am receiving now the error that there is a mismatch between two types:
Namely, in node_modules/apollo-server-errors/dist/index.d.ts:10:5 Apollo Error implements GraphQLError.
export declare class ApolloError extends Error implements GraphQLError { extensions: Record<string, any>; readonly name: string; readonly locations: ReadonlyArray<SourceLocation> | undefined; readonly path: ReadonlyArray<string | number> | undefined; readonly source: Source | undefined; readonly positions: ReadonlyArray<number> | undefined; readonly nodes: ReadonlyArray<ASTNode> | undefined; originalError: Error | null | undefined; [key: string]: any; constructor(message: string, code?: string, extensions?: Record<string, any>); }
whereas GraphQL Error is defined as such:
export class GraphQLError extends Error { constructor( message: string, nodes?: Maybe<ReadonlyArray<ASTNode> | ASTNode>, source?: Maybe<Source>, positions?: Maybe<ReadonlyArray<number>>, path?: Maybe<ReadonlyArray<string | number>>, originalError?: Maybe<Error>, extensions?: Maybe<GraphQLErrorExtensions>, ); ...
As of now, we cannot proceed with using our Backend, also downgrading to what it previously was seems not to be the solution.
Please fix this asap. Thank you very much. I'll open a pull request for this as well.
The text was updated successfully, but these errors were encountered:
GraphQLError: revert originalError to be nullable
originalError
54dae53
Partial revert of #3333 Were reverted due to conflict with Apollo Server, see apollographql/apollo-server#5843
d24dfb3
Fix #3340 Partial revert of #3333 Were reverted due to conflict with Apollo Server, see apollographql/apollo-server#5843
@woltob Thanks for reporting fixed in https://github.com/graphql/graphql-js/releases/tag/v15.7.1
Sorry, something went wrong.
FYI: This problem also effects graphql 16.x. I've already notified IvanGoncharov in that repo's ticket.
No branches or pull requests
Before going into more detail here:
I am receiving now the error that there is a mismatch between two types:
Namely, in node_modules/apollo-server-errors/dist/index.d.ts:10:5 Apollo Error implements GraphQLError.
whereas GraphQL Error is defined as such:
As of now, we cannot proceed with using our Backend, also downgrading to what it previously was seems not to be the solution.
Please fix this asap. Thank you very much.
I'll open a pull request for this as well.
The text was updated successfully, but these errors were encountered: