GraphQLErrorEnhanced: GraphQLErrorExtended & {
    code: string;
    details?: Dict<unknown>;
    extensions: {
        timestamp: string;
    };
    timestamp: string;
}

A GraphQLErrorExtended object with additional properties. This error is thrown by the GraphQL API and returned to the original requester.

Type declaration

  • code: string
  • Optional details?: Dict<unknown>
  • extensions: {
        timestamp: string;
    }
    • timestamp: string

      The timestamp when the error was raised

  • timestamp: string

Generated using TypeDoc