Fluent Commerce Logo
Docs

fc.analytics.queries.fulfilments

Setting

Changed on:

13 Nov 2025

Setting AreaUI component
Supported context levels:ACCOUNT, RETAILER

Overview

The `fc.analytics.queries.fulfilments` is a configuration that defines the analytics queries for the Fluent Analytics fulfilment dashboard

Values

Data TypeValues
JSON
1{
2  "queries": [
3    {
4      "name": "completed_average_fulfilment_time",
5      "resource": {
6        "type": "PATH",
7        "value": "Standard Template/Dashboards/Fulfilments/Completed Average Fulfilment Time"
8      },
9      "roles": [
10        "FULFILMENT_MANAGER"
11      ]
12    },
13    {
14      "name": "fulfilment_by_location",
15      "resource": {
16        "type": "PATH",
17        "value": "Standard Template/Dashboards/Fulfilments/Fulfilments by Location"
18      },
19      "roles": [
20        "FULFILMENT_MANAGER"
21      ]
22    },
23    {
24      "name": "total_completed_fulfillments",
25      "resource": {
26        "type": "PATH",
27        "value": "Standard Template/Dashboards/Fulfilments/Total Completed Fulfillments"
28      },
29      "roles": [
30        "FULFILMENT_MANAGER"
31      ]
32    },
33    {
34      "name": "total_fulfilled_fulfillments",
35      "resource": {
36        "type": "PATH",
37        "value": "Standard Template/Dashboards/Fulfilments/Total Fulfilled Fulfillments"
38      },
39      "roles": [
40        "FULFILMENT_MANAGER"
41      ]
42    },
43    {
44      "name": "total_expired_fulfillments",
45      "resource": {
46        "type": "PATH",
47        "value": "Standard Template/Dashboards/Fulfilments/Total Expired Fulfillments"
48      },
49      "roles": [
50        "FULFILMENT_MANAGER"
51      ]
52    },
53    {
54      "name": "total_escalated_fulfillments",
55      "resource": {
56        "type": "PATH",
57        "value": "Standard Template/Dashboards/Fulfilments/Total Escalated Fulfillments"
58      },
59      "roles": [
60        "FULFILMENT_MANAGER"
61      ]
62    },
63    {
64      "name": "total_failed_fulfillments",
65      "resource": {
66        "type": "PATH",
67        "value": "Standard Template/Dashboards/Fulfilments/Total Failed Fulfillments"
68      },
69      "roles": [
70        "FULFILMENT_MANAGER"
71      ]
72    },
73    {
74      "name": "total_partially_fulfilled_fulfilments",
75      "resource": {
76        "type": "PATH",
77        "value": "Standard Template/Dashboards/Fulfilments/Total Partially Fulfilled Fulfilments"
78      },
79      "roles": [
80        "FULFILMENT_MANAGER"
81      ]
82    },
83    {
84      "name": "item_rejection_rate",
85      "resource": {
86        "type": "PATH",
87        "value": "Standard Template/Dashboards/Fulfilments/Item Rejection Rate"
88      },
89      "roles": [
90        "FULFILMENT_MANAGER"
91      ]
92    },
93    {
94      "name": "top_10_products_fulfilled",
95      "resource": {
96        "type": "PATH",
97        "value": "Standard Template/Dashboards/Fulfilments/Top 10 Products Fulfilled"
98      },
99      "roles": [
100        "FULFILMENT_MANAGER"
101      ]
102    },
103    {
104      "name": "fill_rate_%",
105      "resource": {
106        "type": "PATH",
107        "value": "Standard Template/Dashboards/Fulfilments/Fill Rate %"
108      },
109      "roles": [
110        "FULFILMENT_MANAGER"
111      ]
112    }
113  ]
114}

Detailed technical description

The queries configured in this setting serve as an example aligned with the Fluent Analytics reference fulfillment dashboard. You can customize these values to match the relevant to your setup.

Configuration example

1POST {{fluentApiHost}}/graphql
2
3mutation CreateSetting {
4   createSetting(input: {
5		name: "fc.analytics.queries.orders", 
6		valueType: "JSON", 
7		lobValue: $lobValue , 
8		context: "ACCOUNT", 
9		contextId: 0}) {
10    id
11    name
12  }
13}
14		
15GraphQL variables:
16{
17    "lobValue" : [
18      {
19        "queries": [
20          {
21            "name": "completed_average_fulfilment_time",
22            "resource": {
23              "type": "PATH",
24              "value": "Standard Template/Dashboards/Fulfilments/Completed Average Fulfilment Time"
25            },
26            "roles": [
27              "FULFILMENT_MANAGER"
28            ]
29          },
30          {
31            "name": "fulfilment_by_location",
32            "resource": {
33              "type": "PATH",
34              "value": "Standard Template/Dashboards/Fulfilments/Fulfilments by Location"
35            },
36            "roles": [
37              "FULFILMENT_MANAGER"
38            ]
39          },
40          {
41            "name": "total_completed_fulfillments",
42            "resource": {
43              "type": "PATH",
44              "value": "Standard Template/Dashboards/Fulfilments/Total Completed Fulfillments"
45            },
46            "roles": [
47              "FULFILMENT_MANAGER"
48            ]
49          },
50          {
51            "name": "total_fulfilled_fulfillments",
52            "resource": {
53              "type": "PATH",
54              "value": "Standard Template/Dashboards/Fulfilments/Total Fulfilled Fulfillments"
55            },
56            "roles": [
57              "FULFILMENT_MANAGER"
58            ]
59          },
60          {
61            "name": "total_expired_fulfillments",
62            "resource": {
63              "type": "PATH",
64              "value": "Standard Template/Dashboards/Fulfilments/Total Expired Fulfillments"
65            },
66            "roles": [
67              "FULFILMENT_MANAGER"
68            ]
69          },
70          {
71            "name": "total_escalated_fulfillments",
72            "resource": {
73              "type": "PATH",
74              "value": "Standard Template/Dashboards/Fulfilments/Total Escalated Fulfillments"
75            },
76            "roles": [
77              "FULFILMENT_MANAGER"
78            ]
79          },
80          {
81            "name": "total_failed_fulfillments",
82            "resource": {
83              "type": "PATH",
84              "value": "Standard Template/Dashboards/Fulfilments/Total Failed Fulfillments"
85            },
86            "roles": [
87              "FULFILMENT_MANAGER"
88            ]
89          },
90          {
91            "name": "total_partially_fulfilled_fulfilments",
92            "resource": {
93              "type": "PATH",
94              "value": "Standard Template/Dashboards/Fulfilments/Total Partially Fulfilled Fulfilments"
95            },
96            "roles": [
97              "FULFILMENT_MANAGER"
98            ]
99          },
100          {
101            "name": "item_rejection_rate",
102            "resource": {
103              "type": "PATH",
104              "value": "Standard Template/Dashboards/Fulfilments/Item Rejection Rate"
105            },
106            "roles": [
107              "FULFILMENT_MANAGER"
108            ]
109          },
110          {
111            "name": "top_10_products_fulfilled",
112            "resource": {
113              "type": "PATH",
114              "value": "Standard Template/Dashboards/Fulfilments/Top 10 Products Fulfilled"
115            },
116            "roles": [
117              "FULFILMENT_MANAGER"
118            ]
119          },
120          {
121            "name": "fill_rate_%",
122            "resource": {
123              "type": "PATH",
124              "value": "Standard Template/Dashboards/Fulfilments/Fill Rate %"
125            },
126            "roles": [
127              "FULFILMENT_MANAGER"
128            ]
129          }
130        ]
131      }
132    ]
133}
134