My Spanish app in PANNG stack

Loading

Reading Time: < 1 minute Intention: I am learning Spanish from a Spanish teacher and I cannot read my own notes due to my horrible handwriting. My resolution is to build a full-stack app to store new Spanish vocabulary. Stack: PANNG (Prisma, Angular, NestJS, Nx, GraphQL) Repo: https://github.com/railsstudent/nx-apollo-angular-course Characteristics: Nx Monorepo GraphQL module in Nest Apollo GraphQL Angular Apollo TypeScript … Read more

Add apollo-client to a React project

Loading

Reading Time: < 1 minute Set up Apollo Client for React npm install apollo/client and graphql Create client.tsx file to store configuration of apollo-client react import ApolloClient, InMemoryCache and HttpLink from ‘@apollo/client’ Initialize and export an instance of ApolloClient Test client instance in client.tsx by executing a GraphQL query Create a new folder named graphql and add get-languages.tsx in it … Read more

Tutorials on GraphQL

Loading

Reading Time: < 1 minute Reading the tutorial to build a nodeJS + express GraphQL server Currently in Chapter 3: A Simple Query https://www.howtographql.com/graphql-js/0-introduction/ https://www.howtographql.com/graphql-js/1-getting-started/ https://www.howtographql.com/graphql-js/2-a-simple-query/