Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
1type Todo { 2 id: ID! 3 text: String! 4 completed: Boolean! 5} 6 7type Query { 8 """ 9 Get a single Todo by its ID 10 """ 11 todo(id: ID!): Todo 12}