These are the GraphQL queries and mutations for the YouTube course.
{
clients {
name
}
| Use the natural Vim navigation keys hjkl to navigate the files. | |
| Press o to open the file in a new buffer or open/close directory. | |
| Press t to open the file in a new tab. | |
| Press i to open the file in a new horizontal split. | |
| Press s to open the file in a new vertical split. | |
| Press p to go to parent directory. | |
| Press r to refresh the current directory. | |
| Press m to launch NERDTree menu inside Vim. |
| class Node { | |
| public int value; | |
| public Node left, right; | |
| public Node(int value, Node left, Node right) { | |
| this.value = value; | |
| this.left = left; | |
| this.right = right; | |
| } | |
| } |
| { | |
| "suggest.noselect": false, | |
| "coc.preferences.formatOnSaveFiletypes": [ | |
| "javascript", | |
| "typescript", | |
| "typescriptreact", | |
| "json", | |
| "javascriptreact", | |
| "typescript.tsx", | |
| "graphql" |