Authors:
Ankit Mehta, Cille Schliebitz, Anita Gu
Changed on:
4 Feb 2025


| Placeholder | Values to be inserted |
| <YOUR_PROJECT_NAME> | Use your Fluent Account ID e.g. FCTRAINAU543 |
| src/main/graphql/<YOUR_PROJECT_GROUP_PATH>/schema.json | Use the path to the folder which contains the Schema.json file. For our example we will use com.training as it has Schema.json |
| https://<YOUR_FLUENT_ACCOUNT_ID>.sandbox.api.fluentretail.com/graphql | Use your Fluent Account ID e.g. FCTRAINAU543 |

1{
2"projects": {
3"<YOUR_PROJECT_NAME>": {
4"schemaPath": "src/main/graphql/<YOUR_PROJECT_GROUP_PATH>/schema.json",
5"extensions": {
6"endpoints": {
7"sandbox": {
8"url": "https://<YOUR_FLUENT_ACCOUNT_ID>.sandbox.api.fluentretail.com/graphql",
9"headers": {
10"Authorization": "Bearer ${env:AUTH_TOKEN_ENV}"
11}
12}
13}
14}
15}
16}
17}1query GetOrderById($id: ID!) {
2 orderById(id: $id) {
3 id
4 ref
5 type
6 status
7 totalPrice
8 attributes {
9 name
10 type
11 value
12 }
13 }
14}