-
Notifications
You must be signed in to change notification settings - Fork 6
exporting to csv #5
Copy link
Copy link
Closed
Labels
Description
We had a planned feature to export data instead of displaying.
Syntax:
export {entity} [all]
for example:
export product where sku like LK%
will export all attributes of products with sku begining with 'LK'
or
export product
will export all products found in the system.
Given the last parameter 'all' will export not just attributes but all fields:
For example:
export product all
or
export product where name like '%motor%' all
Reactions are currently unavailable