Features: 1) Add new fields description, big_logo, and small_logo to Brand GraphQL object type;
Fixes: None; Extra: None;
This commit is contained in:
parent
9ac562ed9c
commit
1a36a19662
1 changed files with 1 additions and 1 deletions
|
|
@ -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")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue