Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View YourSouLi5Mine's full-sized avatar

Jorge Hristho Precich Serna YourSouLi5Mine

View GitHub Profile
query roots {
__schema {
queryType {
...typeFields
}
mutationType {
...typeFields
}
@YourSouLi5Mine
YourSouLi5Mine / GraphQL Instrospection
Created November 12, 2019 04:36
Good way to introspect a new GraphQL API
query roots {
__schema {
queryType {
...typeFields
}
mutationType {
...typeFields
}
@YourSouLi5Mine
YourSouLi5Mine / .vimrc
Last active June 15, 2019 19:06
My personal vim configuration
" General
set number " Show line numbers
set linebreak " Break lines at word (requires Wrap lines)
set showbreak=+++ " Wrap-broken line prefix
"set textwidth=80 " Line wrap (number of cols)
set smartcase " Enable smart-case search
set ignorecase " Always case-insensitive
set incsearch " Searches for strings incrementally
set showmatch " Highlight matching brace
set hlsearch " Highlight all search results