We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
商品の価格を更新する Mutation が欲しい。 究極は商品規格情報の変更の Mutation があれば良いのかもしれないが、仕様が複雑になってしまうので、まずは #38 の在庫更新と同様に、商品コードを指定して商品の価格を更新するシンプルな Mutation を用意するのがよいと思う。
パラメータ
実行例
# 在庫無制限ではない商品 mutation { updateProductPrice ( code: "product-001" price01: 3000 price02: 2800 ) { code price01 price02 } }
商品コードで一意にならない場合は、エラーとする。
The text was updated successfully, but these errors were encountered:
refs EC-CUBE#109 商品価格変更の Mutation を実装
4ab2111
No branches or pull requests
商品の価格を更新する Mutation が欲しい。
究極は商品規格情報の変更の Mutation があれば良いのかもしれないが、仕様が複雑になってしまうので、まずは #38 の在庫更新と同様に、商品コードを指定して商品の価格を更新するシンプルな Mutation を用意するのがよいと思う。
パラメータ
実行例
商品コードで一意にならない場合は、エラーとする。
The text was updated successfully, but these errors were encountered: