File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,4 @@ stage: dev
9
9
secret : mysecret123
10
10
11
11
# the file path pointing to your data model
12
- datamodel : datamodel.graphql
13
-
14
- cluster : public-denimotter-285/prisma-eu1
12
+ datamodel : datamodel.graphql
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const resolvers = {
9
9
Query,
10
10
Mutation,
11
11
Subscription,
12
- Feed,
12
+ Feed
13
13
}
14
14
15
15
const server = new GraphQLServer ( {
@@ -19,11 +19,11 @@ const server = new GraphQLServer({
19
19
...req ,
20
20
db : new Prisma ( {
21
21
typeDefs : 'src/generated/prisma.graphql' ,
22
- endpoint : 'https://eu1.prisma.sh/public-denimotter-285/hackernews-graphql-js/dev ' ,
22
+ endpoint : '__PRISMA_ENDPOINT__ ' ,
23
23
secret : 'mysecret123' ,
24
24
debug : true
25
- } ) ,
26
- } ) ,
25
+ } )
26
+ } )
27
27
} )
28
28
29
29
server . start ( ( ) => console . log ( 'Server is running on http://localhost:4000' ) )
You can’t perform that action at this time.
0 commit comments