Merge pull request #115 from Photowall/2369-rework-stock-product-handling
Remove references from old stock-tables
This commit is contained in:
+4304
-4364
File diff suppressed because it is too large
Load Diff
@@ -5,7 +5,7 @@ import { ProductsFilterInput } from '../../types/product-types';
|
||||
const baseQuery = /* sql */ `
|
||||
|
||||
SELECT products.productid AS id,
|
||||
stock.stockid,
|
||||
stock.id AS stockid,
|
||||
products.path,
|
||||
products.visible,
|
||||
products.browsable,
|
||||
@@ -73,7 +73,7 @@ SELECT products.productid AS id,
|
||||
WHERE wt.product_id = products.productid
|
||||
) AS wallpapertypes
|
||||
FROM "product-products" products
|
||||
LEFT JOIN "product-stockproducts" stock ON stock.productid = products.productid
|
||||
LEFT JOIN stockproducts stock ON stock.product_id = products.productid
|
||||
`;
|
||||
|
||||
export function products(input: ProductsFilterInput) {
|
||||
|
||||
Reference in New Issue
Block a user