Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-catalog/view/frontend/web/js/product/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-catalog/view/frontend/web/js/product/query-builder.js

/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

define([
        'underscore'
    ], function (_) {
        'use strict';

        return {

            /**
             * Build query to get id
             *
             * @param {Object} data
             */
            buildQuery: function (data) {
                var filters = [];

                _.each(data, function (value, key) {
                    filters.push({
                        field: key,
                        value: value,
                        'condition_type': 'in'
                    });
                });

                return {
                    searchCriteria: {
                        filterGroups: [
                            {
                                filters: filters
                            }
                        ]
                    }
                };
            }
        };
    }
);