Is anyone doing syntax highlight for the raw string with vscode? So far I've got it working by doing a hacky apolloserver `gql` subtitution example ``` const gql = (s) => `${s}` const schema = gql` type YourTypes {} ` ``` This will highlight the standard queries but obviously omits the extensions. Anyone get further with this?