Get familiar with the visualization and autocomplete features offered by the SurfQL VS Code extension.
- Clone the files to your machine in your preferred way (Git tutorial).
- Open VS Code to the cloned project directory.
- Navigate to
client/src/query.tsx
to view the GraphQL query withinquery.tsx
. - In your VS Code's activity bar click on the SurfQL logo and then "View Schemas".
- In the schema visualizer, turn on track mode.
- As you modify the query, the visualizer should follow your updates.
CD
into the sever directory.- In the terminal run
npm install -g typescript
to globally install typescript if this hasn't been done before. - In the terminal run
npm i
to install the rest of the packages. - In the terminal run
npm start
to start the Apollo GraphQL server.
CD
into the client directory.- In the terminal run
npm install -g typescript
to globally install typescript if this hasn't been done before. - In the terminal run
npm i
to install the rest of the packages. - In the terminal run
npm start
to serve your React.js website to yourself via a webpack dev server.
- GraphQL
- Node.js
- TypeScript
- Apollo (client/server)
- React.js
- Weback