AWS AppSync Limitation

0

I am using AWS AppSync to connect between a database on AWS DynamoDB and a Laravel website. However, there's an issue when requesting orders that exceed 20. Where can I find the problem? Is there a limitation in AWS AppSync causing this?

1 回答
1
已接受的回答

AWS AppSync does have limitations on the number of results returned by a single GraphQL query. By default, the maximum number of results returned by a single query is 100. This limit is imposed to prevent excessive data transfer and potential performance issues.

If you are experiencing issues with querying orders that exceed 20, it's possible that you are hitting this default limit. To address this, you can adjust the pagination settings in your GraphQL schema to allow for larger result sets.

This could be of help :- https://dev.to/onlybakam/implementing-pagination-with-aws-appsync-5d08

profile picture
专家
已回答 1 个月前
  • Okay .. Can I request increase this limit?

  • Yes you can through AWS Support. You can open a ticket for this

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则