Update an existing Inventory Feed via GraphQL API
Author:
Fluent Commerce
Changed on:
30 Jan 2024
Key Points
- After following this guide a user will be able to update an existing Inventory Feed
- Various updates are available once an Inventory Feed has been created and started running
Steps
Update data
Field | Description | Type |
name | Human readable name to describe the Inventory Feed | String |
frequencyCronExpression | Frequency for how often a specific Inventory Feed should run (follows the UNIX Cron Standard) | String |
status | Current status of the Inventory Feed | String |
Example mutation
1mutation {
2 updateInventoryFeed(
3 input: {
4 ref: "Example_Inventory_Feed"
5 name: "Test Inventory Feed"
6 frequencyCronExpression: "0 13 * * */2"
7 }
8 ) {
9 ref
10 name
11 frequencyCronExpression
12 }
13}
14
Language: graphqlschema
Name: Example update inventory feed mutation
Description:
[Warning: empty required content area]