Adding a server in <https://www.howtographql.com/r...
# orm-help
n
Adding a server in https://www.howtographql.com/react-apollo/1-getting-started/ The following steps
curl <https://codeload.github.com/howtographql/react-apollo/tar.gz/starter> | tar -xz --strip=1 react-apollo-starter/server
yarn install
then
prisma deploy
gives the following errror "Cluster undefined does not exist!"
1
It seems to be an issue on this topic https://github.com/howtographql/howtographql/issues/710 The way I resolved this was to git clone https://github.com/howtographql/react-apollo And then cd into server. For some reason running the command
prisma deploy
worked here.
This issue has now ben solved I think updating the deps solved it https://github.com/howtographql/react-apollo/commit/7dc3f55f2f79313cc61dff7a91450b5bc18e131f
😀 1