Features: 1) Add filter_fields to product tags in graphene object types;

Fixes: 1) None;

Extra: 1) None;
This commit is contained in:
Egor Pavlovich Gorbunov 2025-05-29 19:18:07 +03:00
parent baf165ddd7
commit f3ebf029ef

View file

@ -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")