#Pepository
url = [email protected]:miukki/graphql-list.git
#Play with GraphQL
cd server
yarn graphql
#GraphiQL
{
trip(id: 1) {
name
owner {
id
name
}
}
}
{
owner(id: 1) {
name
trips {
name
}
}
}
#DB Setup MLAB https://mlab.com/
#db
mongoose.connect('mongodb://miukki:[email protected]:19641/trips')
#client Used script
yarn create react-app client