├── .gitignore ├── README.md ├── components └── Layout.js ├── libs ├── fetch.js └── subscribe.js ├── next.config.js ├── package.json ├── pages ├── _app.js ├── index.js ├── optimistic-ui.js └── subscriptions.js └── styles └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenweb/swr-graphql/HEAD/README.md -------------------------------------------------------------------------------- /components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenweb/swr-graphql/HEAD/components/Layout.js -------------------------------------------------------------------------------- /libs/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenweb/swr-graphql/HEAD/libs/fetch.js -------------------------------------------------------------------------------- /libs/subscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenweb/swr-graphql/HEAD/libs/subscribe.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenweb/swr-graphql/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenweb/swr-graphql/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenweb/swr-graphql/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenweb/swr-graphql/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/optimistic-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenweb/swr-graphql/HEAD/pages/optimistic-ui.js -------------------------------------------------------------------------------- /pages/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenweb/swr-graphql/HEAD/pages/subscriptions.js -------------------------------------------------------------------------------- /styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenweb/swr-graphql/HEAD/styles/style.css --------------------------------------------------------------------------------