Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/self-healing-ignore.json
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,21 @@
"number": 26757,
"reason": "Router: Internal CLI scaffolding fix for pnpm 11 compatibility. No new user-facing APIs, flags, or configuration options exposed. The fix is transparent—users don't need to change their workflow or understand new behavior. This is a bug fix to prevent Cloud deploy failures, not a feature requiring documentation.",
"added": "2026-06-25"
},
{
"number": 26787,
"reason": "Triage: type tightening and deprecation warnings, no runtime behavior change",
"added": "2026-06-26"
},
{
"number": 25424,
"reason": "Triage: TypeScript type improvements only, no runtime behavior change",
"added": "2026-06-26"
},
{
"number": 26732,
"reason": "Router: Internal implementation fix moving preview script injection mechanism. No public API or user-facing behavior change. Implementation detail about how the script is served.",
"added": "2026-06-26"
}
]
}
4 changes: 4 additions & 0 deletions docusaurus/docs/cms/api/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -967,6 +967,10 @@ Pagination methods can not be mixed. Always use either `page` with `pageSize` or
The default and maximum values for `pagination.limit` can be [configured in the `./config/plugins.js`](/cms/plugins/graphql#code-based-configuration) file with the `graphql.config.defaultLimit` and `graphql.config.maxLimit` keys.
:::

:::note Many-to-many relation ordering with pagination
When querying many-to-many relations with pagination, the custom order set in the admin panel is preserved. If you sort relations in a query (e.g., `categories(sort: "name")`), the pagination respects your specified sort order rather than the custom order configured in the content manager.
:::

## `locale` {#locale}

The [Internationalization (i18n)](/cms/features/internationalization) feature adds new features to the GraphQL API:
Expand Down
Loading