├── .eslintignore ├── .eslintrc ├── .gitignore ├── App.js ├── LICENSE ├── README.md ├── browser.js ├── package.json ├── public └── index.html ├── schema ├── database.js └── schema.js ├── server.js └── utils ├── babelRelayPlugin.js └── updateSchema.js /.eslintignore: -------------------------------------------------------------------------------- 1 | public/bundle.js 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/README.md -------------------------------------------------------------------------------- /browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/browser.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/public/index.html -------------------------------------------------------------------------------- /schema/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/schema/database.js -------------------------------------------------------------------------------- /schema/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/schema/schema.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/server.js -------------------------------------------------------------------------------- /utils/babelRelayPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/utils/babelRelayPlugin.js -------------------------------------------------------------------------------- /utils/updateSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhart/simple-relay-starter/HEAD/utils/updateSchema.js --------------------------------------------------------------------------------