System Information
- Strapi Version: 3.4.1
- Operating System: windows 10
- Database: mongodb
- Node Version: v14.15.4
- NPM Version: 6.14.10
- Yarn Version: 1.22.5
i am in trouble with create a relation with users_permissons_user and nested models
API endpoint : 'GET /users’
each user has a relation with a cart model and cart model has a relation with lineItems model so i expect when i make a request to this endpoint return the cart and its lineItems fields “name” “description” “price” “image”
but returns cart without lineItems fields and only array of its ids
i want lineItems filed in the cart contain “name” “description” “price” “image” not only ids ids
GitHub: strapi-backend project
hope that made sense