├── .gitignore ├── LICENSE ├── arango └── setup_database.sh ├── deploy_stack.sh ├── docker-compose.yml └── openfaas ├── build └── openfaas-graphql-blog │ ├── Dockerfile │ ├── build.sh │ ├── function │ ├── .dockerignore │ ├── handler.js │ ├── lib │ │ ├── db.js │ │ ├── index.js │ │ └── schema.js │ ├── package.json │ └── yarn.lock │ ├── index.js │ └── package.json ├── master.zip ├── openfaas-graphql-blog.yml ├── openfaas-graphql-blog ├── .dockerignore ├── handler.js ├── lib │ ├── db.js │ ├── index.js │ └── schema.js ├── package.json └── yarn.lock └── template └── node ├── Dockerfile ├── build.sh ├── function ├── handler.js └── package.json ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/LICENSE -------------------------------------------------------------------------------- /arango/setup_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/arango/setup_database.sh -------------------------------------------------------------------------------- /deploy_stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/deploy_stack.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /openfaas/build/openfaas-graphql-blog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/build/openfaas-graphql-blog/Dockerfile -------------------------------------------------------------------------------- /openfaas/build/openfaas-graphql-blog/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/build/openfaas-graphql-blog/build.sh -------------------------------------------------------------------------------- /openfaas/build/openfaas-graphql-blog/function/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /openfaas/build/openfaas-graphql-blog/function/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/build/openfaas-graphql-blog/function/handler.js -------------------------------------------------------------------------------- /openfaas/build/openfaas-graphql-blog/function/lib/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/build/openfaas-graphql-blog/function/lib/db.js -------------------------------------------------------------------------------- /openfaas/build/openfaas-graphql-blog/function/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/build/openfaas-graphql-blog/function/lib/index.js -------------------------------------------------------------------------------- /openfaas/build/openfaas-graphql-blog/function/lib/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/build/openfaas-graphql-blog/function/lib/schema.js -------------------------------------------------------------------------------- /openfaas/build/openfaas-graphql-blog/function/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/build/openfaas-graphql-blog/function/package.json -------------------------------------------------------------------------------- /openfaas/build/openfaas-graphql-blog/function/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/build/openfaas-graphql-blog/function/yarn.lock -------------------------------------------------------------------------------- /openfaas/build/openfaas-graphql-blog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/build/openfaas-graphql-blog/index.js -------------------------------------------------------------------------------- /openfaas/build/openfaas-graphql-blog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/build/openfaas-graphql-blog/package.json -------------------------------------------------------------------------------- /openfaas/master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/master.zip -------------------------------------------------------------------------------- /openfaas/openfaas-graphql-blog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/openfaas-graphql-blog.yml -------------------------------------------------------------------------------- /openfaas/openfaas-graphql-blog/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /openfaas/openfaas-graphql-blog/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/openfaas-graphql-blog/handler.js -------------------------------------------------------------------------------- /openfaas/openfaas-graphql-blog/lib/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/openfaas-graphql-blog/lib/db.js -------------------------------------------------------------------------------- /openfaas/openfaas-graphql-blog/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/openfaas-graphql-blog/lib/index.js -------------------------------------------------------------------------------- /openfaas/openfaas-graphql-blog/lib/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/openfaas-graphql-blog/lib/schema.js -------------------------------------------------------------------------------- /openfaas/openfaas-graphql-blog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/openfaas-graphql-blog/package.json -------------------------------------------------------------------------------- /openfaas/openfaas-graphql-blog/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/openfaas-graphql-blog/yarn.lock -------------------------------------------------------------------------------- /openfaas/template/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/template/node/Dockerfile -------------------------------------------------------------------------------- /openfaas/template/node/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/template/node/build.sh -------------------------------------------------------------------------------- /openfaas/template/node/function/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/template/node/function/handler.js -------------------------------------------------------------------------------- /openfaas/template/node/function/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/template/node/function/package.json -------------------------------------------------------------------------------- /openfaas/template/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/template/node/index.js -------------------------------------------------------------------------------- /openfaas/template/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenfdev/openfaas-graphql-blog/HEAD/openfaas/template/node/package.json --------------------------------------------------------------------------------