├── .gitignore ├── README.md ├── knexfile.js ├── migrations ├── 20200128200657_create_artists.js └── 20200128201807_create_albums.js ├── package.json ├── pages └── api │ └── graphql.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/nextjs-graphql-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/nextjs-graphql-example/HEAD/README.md -------------------------------------------------------------------------------- /knexfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/nextjs-graphql-example/HEAD/knexfile.js -------------------------------------------------------------------------------- /migrations/20200128200657_create_artists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/nextjs-graphql-example/HEAD/migrations/20200128200657_create_artists.js -------------------------------------------------------------------------------- /migrations/20200128201807_create_albums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/nextjs-graphql-example/HEAD/migrations/20200128201807_create_albums.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/nextjs-graphql-example/HEAD/package.json -------------------------------------------------------------------------------- /pages/api/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/nextjs-graphql-example/HEAD/pages/api/graphql.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/nextjs-graphql-example/HEAD/yarn.lock --------------------------------------------------------------------------------