-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
feat: Categories retrieve + list API #7009
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
2 Ignored Deployments
|
e0d47be
to
b6ece28
Compare
@@ -76,6 +77,17 @@ export default class ProductCategoryService< | |||
delete filters.include_descendants_tree | |||
delete filters.include_ancestors_tree | |||
|
|||
// Apply free text search filter | |||
if (filters?.q) { |
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.
These are temporary until we figure out what we want to do with the ProductCategoryService. Right now, it is a custom service not using the abstract service factory, so the free text search is not supported out of the box.
cc @adrien2p
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.
Nice 👍
I haven't put much focus on categories as I believe might need some thinking through, but this is nice that we get at least the basic things working
No description provided.