When I use an alias in my graphql query it auto-formats to this:
let myQuery = gql`
{
myAlias: MyObject {
id
name
}
}
`;
when I expect it to look like this:
let myQuery = gql`
{
myAlias: MyObject {
id
name
}
}
`;
Am I missing a setting or something that would allow for my expected formatting?