diff --git a/docusaurus/docs/cms/api/entity-service/crud.md b/docusaurus/docs/cms/api/entity-service/crud.md index ea9301f161..66b830d76d 100644 --- a/docusaurus/docs/cms/api/entity-service/crud.md +++ b/docusaurus/docs/cms/api/entity-service/crud.md @@ -18,7 +18,7 @@ The Entity Service API performs CRUD operations on content through `findOne()`, -The [Entity Service API](/cms/api/entity-service) is built on top of the the [Query Engine API](/cms/api/query-engine) and uses it to perform CRUD operations on entities. +The [Entity Service API](/cms/api/entity-service) is built on top of the [Query Engine API](/cms/api/query-engine) and uses it to perform CRUD operations on entities. The `uid` parameter used in function calls for this API is a `string` built with the following format: `[category]::[content-type]` where `category` is one of: `admin`, `plugin` or `api`. diff --git a/docusaurus/docs/cms/migration/v4-to-v5/breaking-changes/default-input-validation.md b/docusaurus/docs/cms/migration/v4-to-v5/breaking-changes/default-input-validation.md index 6e39351871..4ad109238f 100644 --- a/docusaurus/docs/cms/migration/v4-to-v5/breaking-changes/default-input-validation.md +++ b/docusaurus/docs/cms/migration/v4-to-v5/breaking-changes/default-input-validation.md @@ -61,7 +61,7 @@ In v5, both query parameters and input data are validated. ### Notes -* A `400 Bad Request` error will be thrown if the request has invalid values such as in in the following cases: +* A `400 Bad Request` error will be thrown if the request has invalid values such as in the following cases: - relations the user do not have permission to create - unrecognized values that are not present on a schema diff --git a/docusaurus/docs/cms/plugins/graphql.md b/docusaurus/docs/cms/plugins/graphql.md index 8810250bd9..8158ec5b45 100644 --- a/docusaurus/docs/cms/plugins/graphql.md +++ b/docusaurus/docs/cms/plugins/graphql.md @@ -702,7 +702,7 @@ With the Users & Permissions plugin, a GraphQL request is allowed if the appropr For instance, if a 'Category' content-type exists and is queried through GraphQL with the `Query.categories` handler, the request is allowed if the appropriate `find` permission for the 'Categories' content-type is given. -To query a single category, which is done with the `Query.category` handler, the request is allowed if the the `findOne` permission is given. +To query a single category, which is done with the `Query.category` handler, the request is allowed if the `findOne` permission is given. Please refer to the user guide on how to [define permissions with the Users & Permissions plugin](/cms/features/rbac#editing-a-role). @@ -1145,7 +1145,7 @@ Then on each request, send along an `Authorization` header in the form of `{ "Au To use API tokens for authentication, pass the token in the `Authorization` header using the format `Bearer your-api-token`. :::note -Using API tokens in the the GraphQL Sandbox requires adding the authorization header with your token in the `HTTP HEADERS` tab: +Using API tokens in the GraphQL Sandbox requires adding the authorization header with your token in the `HTTP HEADERS` tab: ```http {