diff options
| author | Ryan Mingyu Choi <ryan.mingyu.choi@gmail.com> | 2018-09-18 18:44:55 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-18 18:44:55 -0700 |
| commit | 8b60ee7f583f893d68a533a3304f30436e72b5f6 (patch) | |
| tree | 4737f4e152786e032cd5e148262be1b9c0ce441f | |
| parent | f5d0bc53dbf93e421f64d49269898e730cf0bcad (diff) | |
Pointing prisma.yml to correct path
Since prisma.yml gets created on the /backend root directory.
Tested with graphql-cli and displayed eror — "prisma/prisma.yml could not be found."
Prisma post-deploy command did not show an error.
| -rw-r--r-- | sick-fits/backend/.graphqlconfig.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sick-fits/backend/.graphqlconfig.yml b/sick-fits/backend/.graphqlconfig.yml index 2f01155..41bf8fc 100644 --- a/sick-fits/backend/.graphqlconfig.yml +++ b/sick-fits/backend/.graphqlconfig.yml @@ -7,4 +7,4 @@ projects: prisma: schemaPath: "src/generated/prisma.graphql" extensions: - prisma: prisma/prisma.yml
\ No newline at end of file + prisma: prisma.yml |
