nodkz / graphql-workshop-ru

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Воркшоп по созданию GraphQL сервера на Node.JS и Apollo Client

Схема данных

Data Domain

MongoDB Schema

Полная модель данных Northwind

ФАК

  1. Гит не видит нужных веток
git fetch origin
  1. Как подсмотреть решение, не теряя прогресс?
# Текущая ветка git checkout step0-start
git stash # сохраните изменения
git checkout step0 # перейдите в ветку с решением
git checkout step0-start # вернитесь
git stash apply # загрузите сохранение

Usage

Clone the repository

git clone git@github.com:nodkz/graphql-workshop-ru.git
cd graphql-workshop-ru

Install packages

yarn install
cd server && yarn install
cd client && yarn install

Start the client and the server

yarn watch

Or only server

cd server && yarn watch

Or only client

cd client && yarn watch

APP Diagramm

See Northwind models

About

License:MIT License