本文整理汇总了TypeScript中graphql.formatError函数的典型用法代码示例。如果您正苦于以下问题:TypeScript formatError函数的具体用法?TypeScript formatError怎么用?TypeScript formatError使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了formatError函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: formatter
return errors.map(error => {
if (formatter !== undefined) {
try {
return formatter(error);
} catch (err) {
console.error('Error in formatError function:', err);
const newError = new Error('Internal server error');
return formatError(newError);
}
} else {
return formatError(error);
}
}) as Array<Error>;
示例2: catch
return errors.map((error) => {
if (options.formatError) {
try {
return options.formatError(error);
} catch (err) {
console.error('Error in formatError function:', err);
const newError = new Error('Internal server error');
return formatError(newError);
}
} else {
return formatError(error);
}
}) as Array<Error>;
示例3: extendedFormatError
const formatError = (error: GraphQLError) => {
// Get the appropriate formatted error object, including any extended error
// fields if the user wants them.
const formattedError =
options.extendedErrors && options.extendedErrors.length
? extendedFormatError(error, options.extendedErrors)
: defaultFormatError(error);
// If the user wants to see the errorâs stack, letâs add it to the
// formatted error.
if (options.showErrorStack)
(formattedError as object)['stack'] =
error.stack != null && options.showErrorStack === 'json'
? error.stack.split('\n')
: error.stack;
return formattedError;
};
示例4: defaultErrorFormatter
export function defaultErrorFormatter(
error,
): GraphQLFormattedError & PrismaErrorProps {
const data: GraphQLFormattedError & PrismaErrorProps = formatError(error)
if (
error.originalError &&
error.originalError.result &&
error.originalError.result.errors &&
error.originalError.result.errors.length === 1
) {
const originalError = error.originalError.result.errors[0]
if (originalError.message === error.message) {
if (originalError.code) {
data.code = originalError.code
}
if (originalError.requestId) {
data.requestId = originalError.requestId
}
}
}
return data
}