Hi team I am working on Product on Zed and Yves , ...
# help
c
Hi team I am working on Product on Zed and Yves , I create a new column in spy_product and spy_product_abstract name as "isMembership":bool , which identify that the product is normal product or a subsciption , and i want to access that column on PDP page and Cart page and Whole checkout flow , but in yves PDP data comes from redis , i check in redis all column data is there but the newly created filed which i create is not there , so i am not able to access it on Yves side how can i acess that please help me out
w
Did you extended the
ProductAbstractStorageTransfer
via the transfer definitions to include the new field as well? Afterwards you need to publish the product again (
publish:trigger-events -r product_abstract -i <product abstract id
)
c
I have extend that Transfer object and add my field as weel , i cretaed the field in spy_product concrete product , how to get that
w
Then you need to publish the product concrete:
publish:trigger-events -r product_concrete -i <product concrete id>
c
ok
its work , thank you
if i want to push all product without passing the id for publish all product which command i have to use
w
Just don't use the id/i parameter at all, this will publish all product concretes
c
thank you