├── .gitignore ├── .graphqlconfig.yml ├── README.md ├── database ├── datamodel.graphql └── prisma.yml ├── package.json ├── src ├── generated │ └── prisma.graphql ├── index.js └── schema.graphql └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/subscriptions/HEAD/.gitignore -------------------------------------------------------------------------------- /.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/subscriptions/HEAD/.graphqlconfig.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/subscriptions/HEAD/README.md -------------------------------------------------------------------------------- /database/datamodel.graphql: -------------------------------------------------------------------------------- 1 | type Post { 2 | id: ID! @unique 3 | title: String! 4 | } -------------------------------------------------------------------------------- /database/prisma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/subscriptions/HEAD/database/prisma.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/subscriptions/HEAD/package.json -------------------------------------------------------------------------------- /src/generated/prisma.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/subscriptions/HEAD/src/generated/prisma.graphql -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/subscriptions/HEAD/src/index.js -------------------------------------------------------------------------------- /src/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/subscriptions/HEAD/src/schema.graphql -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikolasburk/subscriptions/HEAD/yarn.lock --------------------------------------------------------------------------------