From 1a36a19662c28add6e7841d10eea4a20e3871cd8 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Mon, 16 Jun 2025 17:22:07 +0300 Subject: [PATCH] Features: 1) Add new fields `description`, `big_logo`, and `small_logo` to Brand GraphQL object type; Fixes: None; Extra: None; --- core/graphene/object_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/graphene/object_types.py b/core/graphene/object_types.py index 5a978251..0b8eb3b6 100644 --- a/core/graphene/object_types.py +++ b/core/graphene/object_types.py @@ -78,7 +78,7 @@ class BrandType(DjangoObjectType): class Meta: model = Brand interfaces = (relay.Node,) - fields = ("uuid", "categories", "name") + fields = ("uuid", "categories", "name", "description", "big_logo", "small_logo") filter_fields = ["uuid", "name"] description = _("brands")