-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
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
data-generator-retail - rename commands to orders #9800
Conversation
there are still instances of command_id in the demo, as well as instances of the 'commands' keyword |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When I test the demo in this branch, any request for the orders returns an empty response.
Run the demo once with |
@@ -15,7 +15,7 @@ const getGqlResource = (resource: string) => { | |||
case 'categories': | |||
return 'Category'; | |||
|
|||
case 'commands': | |||
case 'orders': | |||
return 'Command'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: shouldn't we return Order
as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed 👌
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
No description provided.