From b8d389a40a8681a6e3aba33c13e617a4cb5b71a9 Mon Sep 17 00:00:00 2001 From: Daniel Hutzel Date: Mon, 15 Jul 2024 18:30:12 +0200 Subject: [PATCH] Update genres.http --- bookshop/test/genres.http | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bookshop/test/genres.http b/bookshop/test/genres.http index 9d85a472a..a1eb770f4 100644 --- a/bookshop/test/genres.http +++ b/bookshop/test/genres.http @@ -3,15 +3,15 @@ # Genres # -GET http://localhost:4004/test/Genres? +GET http://localhost:4004/odata/v4/test/Genres? ### -GET http://localhost:4004/test/Genres? +GET http://localhost:4004/odata/v4/test/Genres? &$filter=parent_ID eq null&$select=name &$expand=children($select=name) ### -POST http://localhost:4004/test/Genres? +POST http://localhost:4004/odata/v4/test/Genres? Content-Type: application/json { "ID":100, "name":"Some Sample Genres...", "children":[ @@ -26,13 +26,13 @@ Content-Type: application/json ]} ### -GET http://localhost:4004/test/Genres(100)? +GET http://localhost:4004/odata/v4/test/Genres(100)? # &$expand=children # &$expand=children($expand=children($expand=children($expand=children))) ### -DELETE http://localhost:4004/test/Genres(103) +DELETE http://localhost:4004/odata/v4/test/Genres(103) ### -DELETE http://localhost:4004/test/Genres(100) +DELETE http://localhost:4004/odata/v4/test/Genres(100) ###