当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript graphql.formatError函数代码示例

本文整理汇总了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>;
开发者ID:chentsulin,项目名称:apollo-server,代码行数:13,代码来源:runQuery.ts

示例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>;
开发者ID:convoyinc,项目名称:apollo-server,代码行数:13,代码来源:runQuery.ts

示例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;
  };
开发者ID:calebmer,项目名称:postgraphql,代码行数:18,代码来源:createPostGraphileHttpRequestHandler.ts

示例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
}
开发者ID:slimui,项目名称:graphql-yoga,代码行数:24,代码来源:defaultErrorFormatter.ts


注:本文中的graphql.formatError函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。