Hello,
Is there a way to map a GraphQL response into a table without using the Functions?
It looks something like this and comes out as a json but not table:
{
"orders":{
"parameter":{
"parameter2":[
{
"theActualOrder":{
"id":"string",
"products":[
{
"name":"Name of the product",
"sku":"SKU123",
"quantity":1,
"price":{
"net":23,
"gross":23
}
}
],
"customer":{
"lastName":"Lastname",
"firstName":"Firstname",
"addresses":[
{
"type":"billing",
"firstName":null,
"lastName":null,
"city":"City",
"state":null,
"country":"Country",
"postalCode":"1234",
"street":"Street",
"street2":null,
"streetNumber":"1",
"phone":null,
"email":null
},
{
"type":"delivery",
"firstName":null,
"lastName":null,
"city":"City",
"state":null,
"country":"Country",
"postalCode":"1234",
"street":"Street",
"street2":null,
"streetNumber":"1",
"phone":null,
"email":null
}
]
}
}
}
]
}
}
}
Ideally I would want it something like:
{ "data": [ { "id":"String", "products": [ { ... } ] } ] }
Thanks in advance