Is it possible to use an alias name on a graphql query such as SQL (see below)
select productCode as 'ID' from product
Is it possible to use an alias name on a graphql query such as SQL (see below)
select productCode as 'ID' from product
After some tinkering much googling... here it is.
query {
product {
ID : productCode
}
}