https://github.com/shamaz332/jamstack-todo
Bootcamp 2020 Project 12C
https://github.com/shamaz332/jamstack-todo
apollo-client faunadb graphql jamstack netlify-functions
Last synced: 2 months ago
JSON representation
Bootcamp 2020 Project 12C
- Host: GitHub
- URL: https://github.com/shamaz332/jamstack-todo
- Owner: shamaz332
- Created: 2020-11-10T18:02:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-15T08:55:02.000Z (over 5 years ago)
- Last Synced: 2025-04-14T15:56:06.412Z (about 1 year ago)
- Topics: apollo-client, faunadb, graphql, jamstack, netlify-functions
- Language: JavaScript
- Homepage: https://shamaz-jamstack-todo.netlify.app/
- Size: 2.33 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Now we will add a dependency package in the netlify function
cd functions/graphql_hello
npm init
npm install --save apollo-server-lambda graphql
add graphql_hello.js hello world code
netlify dev
Note that there are three servers running on local host, Functions server is listening on port 52810, Gatsby server running on port 8000, and proxy server running at port 8888
Now lets start building the client:
npm install @apollo/client --save
(((https://github.com/apollographql/apollo-server/issues/1989)))
Deploying with Netlify Functions>>>
https://www.apollographql.com/docs/apollo-server/deployment/netlify/
>>>>
Deploy a fullstack Apollo app with Netlify>>>
https://www.apollographql.com/blog/deploy-a-fullstack-apollo-app-with-netlify-45a7dfd51b0b/
>>>