graphql-for-vscode
graphql-for-vscode copied to clipboard
Unused type definition 'Subscription'
Not an error, but show warning if I use Subscription type.
type Subscription {
newUser: User
}

Doesn't happen with Query and Mutation type.
Do I need additional setup for subscription? My current .gqlconfig is
{
schema: {
files: 'src/**/*.graphql'
}
}