This vim plugin provides graphql client features. Execute requests from a GraphQL file and immediately display the response.
:GraphQLClientExecute
current buffer (*.graphql) as graphql query.
dein
[[plugins]]
repo = 'TakuroSugahara/graphql-client-vim'
Neobundle
NeoBundle 'TakuroSugahara/graphql-client-vim'
Plug
Plug 'jparise/vim-graphql'
let g:graphql_client_headers = {
\ 'authorization': 'Bearer your token here'
\ }
let g:graphql_client_endpoint = 'http://localhost:8080/api/graphql'
- jq
- Format a GraphQL response in JSON format.
- GraphQL schema parsing feature
- Provides auto-completion and error detection capabilities.