fc.analytics.queries.fulfilments
Setting
Changed on:
13 Nov 2025
| Setting Area | UI 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 Type | Values |
|---|---|
| JSON | |
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