當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。