@neo4j/graphql
Version:
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
21 lines • 793 B
TypeScript
import { GraphQLError } from "graphql";
export declare class Neo4jGraphQLError extends GraphQLError {
readonly name: any;
constructor(message: string);
}
export declare class Neo4jGraphQLForbiddenError extends Neo4jGraphQLError {
constructor(message: string);
}
export declare class Neo4jGraphQLAuthenticationError extends Neo4jGraphQLError {
constructor(message: string);
}
export declare class Neo4jGraphQLConstraintValidationError extends Neo4jGraphQLError {
constructor(message: string);
}
export declare class Neo4jGraphQLRelationshipValidationError extends Neo4jGraphQLError {
constructor(message: string);
}
export declare class Neo4jGraphQLSchemaValidationError extends Neo4jGraphQLError {
constructor(message: string);
}
//# sourceMappingURL=Error.d.ts.map