[ ] Querys and Mutation by GUI:
-
query { productById(productId: 1) { name } }
-
query { productBySku(sku: 1) { name } }
-
query { products { productId name } }
-
query { products { productId name inventory { warehouses { locality quantity } } } }
-
mutation { createProduct(product: { properties... } ) { name } }
-
mutation { updateProduct(product: { properties... } ) {} }
-
mutation { removeProductById(productId: 1 ) {} }
-
mutation { removeProductBySku(sku: 1 ) {} }
[ ] GET - Find product(s)
[ ] POST - Create product
[ ] PUT - Update product
[ ] DELETE - Remove product