├── .gitignore ├── Readme.md ├── example-schema.graphql ├── gaffer.json ├── graphqldgraph.gif ├── package.json ├── schema.graphql └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | generated* -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-backend-template-dgraph/HEAD/Readme.md -------------------------------------------------------------------------------- /example-schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-backend-template-dgraph/HEAD/example-schema.graphql -------------------------------------------------------------------------------- /gaffer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-backend-template-dgraph/HEAD/gaffer.json -------------------------------------------------------------------------------- /graphqldgraph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-backend-template-dgraph/HEAD/graphqldgraph.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-backend-template-dgraph/HEAD/package.json -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-backend-template-dgraph/HEAD/schema.graphql -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-backend-template-dgraph/HEAD/tsconfig.json --------------------------------------------------------------------------------