Fluent Commerce Logo
Docs
Sign In

HOTFIX_NEW_APOLLO_CLIENT_ENABLED

Setting

Changed on:

24 Oct 2023

Setting AreaUI component, Workflow, Orders
Supported context levels:ACCOUNT

Overview

This setting is required for orchestrated returns.

This setting is required to enable the 

`DEAFULT_TAX_TYPE`
 setting. This setting enables reading and writing raw JSON. This is a Boolean setting that should be set to 
`TRUE`
.

Values

Data TypeValues
BOOLEAN

Default Values:

  • TRUE

Possible Values:

  • TRUE
  • FALSE

Configuration example

1POST {{fluentApiHost}}/graphql
2
3mutation CreateSetting {
4   createSetting(input: {
5		name: "HOTFIX_NEW_APOLLO_CLIENT_ENABLED", 
6		valueType: "BOOLEAN", 
7		value: "TRUE", 
8		context: "ACCOUNT", 
9		contextId: 0}) {
10    id
11    name
12  }
13}

Language: json

Update example

1POST {{fluentApiHost}}/graphql
2
3mutation updateSetting {
4  updateSetting(input: {
5		id: 5001464,
6		name: "HOTFIX_NEW_APOLLO_CLIENT_ENABLED", 
7		valueType: "BOOLEAN", 
8		value:"FALSE", 
9		context: "ACCOUNT", 
10		contextId: 0}) {
11    id
12    name
13  }
14}
15

Language: json