本文整理匯總了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
}