nocobase/packages/samples/shop-modeling
2022-09-26 15:03:22 +08:00
..
src fix: pm add error 2022-09-26 15:03:22 +08:00
client.d.ts Doc: dev collection fields (#846) 2022-09-26 01:18:55 +08:00
client.js Doc: dev collection fields (#846) 2022-09-26 01:18:55 +08:00
package.json Doc: dev collection fields (#846) 2022-09-26 01:18:55 +08:00
README.md Doc: dev collection fields (#846) 2022-09-26 01:18:55 +08:00
server.d.ts Doc: dev collection fields (#846) 2022-09-26 01:18:55 +08:00
server.js Doc: dev collection fields (#846) 2022-09-26 01:18:55 +08:00

Modeling for simple shop scenario

Installation

yarn build samples/shop-modeling
yarn pm add sample-shop-modeling
yarn enable sample-shop-modeling

Test

Start the local development server:

yarn dev --server

Products API

# create a product
curl -X POST -d '{"title": "iPhone 14 Pro", "price": "7999", "enabled": true, "inventory": 10}' "http://localhost:13000/api/products"

# list products
curl "http://localhost:13000/api/products"

# get product which id=1
curl "http://localhost:13000/api/products?filterByTk=1"

Orders API

# create a order
curl -X POST -d '{"productId": 1, "quantity": 1, "totalPrice": "7999", "userId": 1}' 'http://localhost:13000/api/orders'

# list orders which userId=1 with product
curl 'http://localhost:13000/api/orders?filter={"userId":1}&appends=product'