10 lines
143 B
TypeScript
10 lines
143 B
TypeScript
export const BRAND_FRAGMENT = gql`
|
|
fragment Brand on BrandType {
|
|
uuid
|
|
slug
|
|
name
|
|
smallLogo
|
|
bigLogo
|
|
description
|
|
}
|
|
`;
|