Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
at main 147 B view raw
1type Query { 2 post(id: ID!): Post 3 """ 4 List out all posts 5 """ 6 posts: [Post] 7} 8 9type Post { 10 id: ID! 11 title: String! 12 content: String! 13}