├── .gitignore ├── README.md ├── next-env.d.ts ├── package.json ├── pages ├── _app.tsx ├── api │ └── graphql.ts └── index.tsx ├── public ├── favicon.ico └── vercel.svg ├── src ├── apollo.ts └── schema.ts ├── styles ├── Home.module.css └── globals.css ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/pages/api/graphql.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/apollo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/src/apollo.ts -------------------------------------------------------------------------------- /src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/src/schema.ts -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/apollo-nextjs/HEAD/yarn.lock --------------------------------------------------------------------------------