The ability to customize REST paths with sub-directories, such as /api/sub-directory/books.
This improvement addresses potential conflicts that arise when multiple data sources contain entities with the same desired REST path. For example, you might have an Item entity under both an Invoice and a ShoppingCart. With the current setup, you might end up with paths like /shopping-cart and /shopping-cart-item, when the desired paths would be /shopping-cart/item and /invoice/item. This issue becomes more pronounced as we introduce tenant support across multiple databases.
Questions
How many sub-folders, just one? Yes. Just one.
Are paths unique across config files? Yes, required.
What is it?
/api/sub-directory/books
.This improvement addresses potential conflicts that arise when multiple data sources contain entities with the same desired REST path. For example, you might have an
Item
entity under both anInvoice
and aShoppingCart
. With the current setup, you might end up with paths like/shopping-cart
and/shopping-cart-item
, when the desired paths would be/shopping-cart/item
and/invoice/item
. This issue becomes more pronounced as we introduce tenant support across multiple databases.Questions
Related issues to close
1085
1566