Fluent Commerce Logo
Docs
Sign In

fc.oms.inventory.search.product.catalogue.default

Setting

Changed on:

9 Jan 2025

Setting AreaUI component
Supported context levels:ACCOUNT, RETAILER

Overview

The `fc.oms.inventory.search.product.catalogue.default` is a configuration used to set the default value for the Product Catalogue Filter on the Search page. This ensures that the filter is pre-applied with a specific catalog.

Values

Data TypeValues
STRING

FCRG:PC:MASTER:TEST:{{activeRetailer.id}}

Detailed technical description

The retrieves the catalog name along with the ID to display only the relevant options for the selected . This dynamic behavior ensures the filter adapts to different retail contexts and configurations.

It is possible to refer to the in using alias: `"defaultValue": "{{settings.default_pc}}"`.

Configuration example

1POST {{fluentApiHost}}/graphql
2
3mutation CreateSetting {
4   createSetting(input: {
5		name: "fc.oms.inventory.search.product.catalogue.default", 
6		valueType: "STRING", 
7		value: "DEFAULT:{{activeRetailer.id}}", 
8		context: "ACCOUNT", 
9		contextId: 0}) {
10    id
11    name
12  }
13}