Features: 1) Add filter_fields to product tags in graphene object types;
Fixes: 1) None; Extra: 1) None;
This commit is contained in:
parent
baf165ddd7
commit
f3ebf029ef
1 changed files with 1 additions and 0 deletions
|
|
@ -463,6 +463,7 @@ class ProductTagType(DjangoObjectType):
|
|||
model = ProductTag
|
||||
interfaces = (relay.Node,)
|
||||
fields = ("uuid", "tag_name", "name", "product_set")
|
||||
filter_fields = ["uuid", "tag_name", "name"]
|
||||
description = _("product tags")
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue