diff options
Diffstat (limited to 'doc/api/graphql/index.md')
-rw-r--r-- | doc/api/graphql/index.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/graphql/index.md b/doc/api/graphql/index.md index 320e7cbcfc1..4286d459e54 100644 --- a/doc/api/graphql/index.md +++ b/doc/api/graphql/index.md @@ -75,7 +75,7 @@ frequently [verify your API calls against the future breaking-change schema](#ve Fields behind a feature flag and disabled by default do not follow the deprecation and removal process, and can be removed at any time without notice. -Learn more about [breaking changes](../../development/deprecation_guidelines/index.md). +For more information, see [Deprecating GitLab features](../../development/deprecation_guidelines/index.md). WARNING: GitLab makes all attempts to follow the [deprecation and removal process](#deprecation-and-removal-process). @@ -172,7 +172,7 @@ Limit | Default Max page size | 100 records (nodes) per page. Applies to most connections in the API. Particular connections may have different max page size limits that are higher or lower. [Max query complexity](#max-query-complexity) | `200` for unauthenticated requests and `250` for authenticated requests. Request timeout | 30 seconds. -Max query size | 10,000 characters per query. If this limit is reached, use [variables](https://graphql.org/learn/queries/#variables) and [fragments](https://graphql.org/learn/queries/#fragments) to reduce the query size. Remove white spaces as last resort. +Max query size | 10,000 characters per query or mutation. If this limit is reached, use [variables](https://graphql.org/learn/queries/#variables) and [fragments](https://graphql.org/learn/queries/#fragments) to reduce the query or mutation size. Remove white spaces as last resort. ### Max query complexity |