fixing
This commit is contained in:
@ -1334,3 +1334,32 @@ export const SAVE_WB_WAREHOUSE_CACHE = gql`
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
// Мутации для кеша статистики продаж
|
||||
export const SAVE_SELLER_STATS_CACHE = gql`
|
||||
mutation SaveSellerStatsCache($input: SellerStatsCacheInput!) {
|
||||
saveSellerStatsCache(input: $input) {
|
||||
success
|
||||
message
|
||||
cache {
|
||||
id
|
||||
organizationId
|
||||
cacheDate
|
||||
period
|
||||
dateFrom
|
||||
dateTo
|
||||
productsData
|
||||
productsTotalSales
|
||||
productsTotalOrders
|
||||
productsCount
|
||||
advertisingData
|
||||
advertisingTotalCost
|
||||
advertisingTotalViews
|
||||
advertisingTotalClicks
|
||||
expiresAt
|
||||
createdAt
|
||||
updatedAt
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
Reference in New Issue
Block a user