Add product blacklisting mutation (#18)
This commit is contained in:
@@ -15,6 +15,16 @@ export interface ProductInfoInput {
|
||||
visible: boolean;
|
||||
}
|
||||
|
||||
export interface ProductBlacklistMarketInput {
|
||||
marketId: number;
|
||||
groupIds: Array<number>;
|
||||
}
|
||||
export interface ProductBlacklistInput {
|
||||
productId: number;
|
||||
markets: Array<ProductBlacklistMarketInput>;
|
||||
}
|
||||
|
||||
// query types
|
||||
export interface ProductsFilterInput {
|
||||
pagination: PaginationInput;
|
||||
filter?: ProductsFilter;
|
||||
|
||||
Reference in New Issue
Block a user