Câu hỏi phỏng vấn GraphQL
Câu hỏi

How to do Error Handling in GraphQL?

Câu trả lời

Error handling in GraphQL is a critical aspect of developing robust and user-friendly APIs. Unlike traditional REST APIs, GraphQL does not use HTTP status codes to indicate errors. Instead, errors are embedded within the response payload. Here’s a comprehensive guide on how to handle errors in GraphQL:

Types of GraphQL Errors

  1. Syntax Errors: These occur when the query or mutation does not follow the correct syntax rules defined by the GraphQL specification. Examples include missing brackets or incorrect field names.
  2. Validation Errors: These happen when the query includes fields or arguments that do not exist in the schema.
  3. Resolver Errors: These occur during the execution of a query or mutation, often due to issues in the resolver logic or external data sources.
  4. Network Errors: These are related to issues in the network communication between the client and the server.

Structure of GraphQL Errors

GraphQL errors are returned in a standardized format within the errors field of the response. Each error object typically includes:

  • message: A description of the error.
  • locations: The location in the query where the error occurred.
  • path: The path to the field that caused the error.
  • extensions: Optional additional metadata about the error.

Example:

json Copy
{
  "errors": [
    {
      "message": "Book not found",
      "locations": [{ "line": 2, "column": 7 }],
      "path": ["book", "1234"]
    }
  ]
}

Best Practices for Error Handling

1. Clear Error Messages

Provide clear and informative error messages that help developers understand what went wrong and how to fix it. This includes specifying the type of error and the problematic field or argument.

2. Custom Error Types

Define explicit error types in your schema to clarify the nature of errors. For example, using a union type to represent different possible outcomes:

graphql Copy
union UserResult = User | UserInputError

type User {
  id: ID!
  name: String!
}

type UserInputError {
  message: String!
  field: String!
}

3. Use Extensions for Additional Context

Leverage the extensions field to include additional context, such as error codes or metadata, which can help with debugging and error handling on the client side.

javascript Copy
throw new GraphQLError('Invalid argument value', {
  extensions: { code: 'BAD_USER_INPUT', argumentName: 'id' }
});

4. Partial Data Responses

GraphQL can return partial data along with errors. This is useful for providing as much information as possible even when some parts of the query fail.

json Copy
{
  "data": { "getInt": 12, "getString": null },
  "errors": [{ "message": "Failed to get string!" }]
}

5. Client-Side Error Handling

Handle errors on the client side as part of the business logic. This involves parsing error responses and presenting them in a user-friendly manner.

6. Logging and Monitoring

Impleme...

junior

junior

Gợi ý câu hỏi phỏng vấn

junior

What is GraphQL schema ?

senior

Can you make a GraphQL type both an input and output type?

middle

What kind of operations could GraphQL schema have?

Bình luận

Chưa có bình luận nào

Chưa có bình luận nào