Can you please tell me if it is possible to get the value of the nested field as the value of the alias.
query getItemList{
item{
name
source: itemSource {
name
}
}
}
# response
{
name: "someItem",
source: { name: "someName" }
}
# want to get
{
name: "someItem",
source: "someName"
}
itemSource
transformed from an object to a string? do it on FE after fetching - xadm