From 459c1dd2d5b78d661190246298edfbaa014784e3 Mon Sep 17 00:00:00 2001 From: Richard van Laak Date: Tue, 30 Sep 2025 15:49:34 +0200 Subject: [PATCH] Remove invalid tip about #[GetCollection] alias Removed tip about #[GetCollection] alias in operations documentation, as #[Get] does not have a collection field anymore. --- core/operations.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/operations.md b/core/operations.md index 529fed04190..9db71737a57 100644 --- a/core/operations.md +++ b/core/operations.md @@ -72,9 +72,6 @@ for the `GET` method for both `collection` and `item` to create a readonly endpo If the operation's name matches a supported HTTP method (`GET`, `POST`, `PUT`, `PATCH` or `DELETE`), the corresponding `method` property will be automatically added. -> [!TIP] -> The `#[GetCollection]` attribute is an alias for `#[Get(collection: true)]` - --- > [!NOTE]