summaryrefslogtreecommitdiffstats
path: root/graphcool/graphcool.yml
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-01-30 12:41:01 -0500
committerWes Bos <wesbos@gmail.com>2018-01-30 12:41:01 -0500
commitcd0b07b3adb36fb5ec098f9e511ab45d774fee7b (patch)
treea203e5010219ccea1acc6bbd2c0a4bcfa0a78615 /graphcool/graphcool.yml
parent0a1648bf47490b312169c531aeb51ef4725e8d2e (diff)
Move to Prisma Backend
Diffstat (limited to 'graphcool/graphcool.yml')
-rw-r--r--graphcool/graphcool.yml44
1 files changed, 0 insertions, 44 deletions
diff --git a/graphcool/graphcool.yml b/graphcool/graphcool.yml
deleted file mode 100644
index 6434b57..0000000
--- a/graphcool/graphcool.yml
+++ /dev/null
@@ -1,44 +0,0 @@
-# Welcome to Graphcool!
-#
-# This file is the main config file for your Graphcool Service.
-# It's very minimal at this point and uses default values.
-# We've included a hello world function here.
-# Just run `graphcool deploy` to have the first running Graphcool Service.
-#
-# Check out some examples:
-# https://github.com/graphcool/graphcool/tree/master/examples
-#
-# Here are the reference docs of this definition format:
-# https://docs-next.graph.cool/reference/service-definition/graphcool.yml-foatho8aip
-#
-# Happy Coding!
-
-
-# In the types.graphql you define your data schema
-types: ./types.graphql
-
-
-functions:
-
- createCharge:
- handler:
- code: src/createCharge.js
- type: operationBefore
- operation: Order.create
-
-
-# Model/Relation permissions are used to limit the API access
-# To take the burden of thinking about those while development, we
-# preconfigured the wildcard ("*") permission that allows everything
-# Read more here:
-# https://docs-next.graph.cool/reference/auth/authorization/overview-iegoo0heez
-permissions:
-- operation: "*"
-
-
-# Your root tokens used for functions to get full access to the API
-# Read more here:
-# https://docs-next.graph.cool/reference/auth/authentication/authentication-tokens-eip7ahqu5o
-# rootTokens:
-# - mytoken
-