├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── explorations └── network-formats │ └── lightweight-results │ ├── .babelrc │ ├── .eslintrc │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── fixtures │ └── result.json │ ├── gulpfile.babel.js │ ├── mocha │ ├── bootstrap.js │ ├── mocha.opts │ └── watch-reporter.js │ ├── package.json │ └── src │ ├── __mocks__ │ ├── .eslintrc │ └── sinon.js │ ├── __tests__ │ ├── .eslintrc │ ├── flatten-test.js │ └── passthrough-test.js │ ├── arrayrefize.js │ ├── deleonize.js │ ├── demessagepackize.js │ ├── flatten.js │ ├── index.js │ ├── leonize.js │ ├── messagepackize.js │ ├── passthrough.js │ └── thin.js └── presentations └── 2016-08-17-relay-2-simpler-faster-more-predictable ├── README.md ├── build.sh ├── content ├── batch-protocol.monopic ├── batch-protocol.svg ├── bet.jpg ├── cheetah.jpg ├── client-side-batches.monopic ├── client-side-batches.svg ├── colocated.monopic ├── colocated.svg ├── colocated.txt ├── compiler.monopic ├── compiler.svg ├── compiler.txt ├── container.jpg ├── dataloader.monopic ├── dataloader.svg ├── deferred.monopic ├── deferred.svg ├── deferred.txt ├── diff-query.monopic ├── diff-query.svg ├── diff-query.txt ├── diff.jpg ├── faster.jpg ├── fat-queries.jpg ├── framework.jpg ├── glue.monopic ├── glue.svg ├── glue.txt ├── goal.jpg ├── graph.png ├── graphql-query.txt ├── graphql-result.json ├── graphql-with-connection-query.txt ├── graphql-with-connection-result.json ├── graphql-with-inline-fragment-query.txt ├── graphql-with-inline-fragment-result.json ├── index.html ├── native-prefetching-timeline.monopic ├── native-prefetching-timeline.svg ├── native-prefetching-timeline.txt ├── performance.jpg ├── philosoraptor.jpg ├── phone.jpg ├── predictable.jpg ├── react.js ├── relay-1-ast.js ├── relay-1.monopic ├── relay-1.txt ├── relay-connection-timeline.monopic ├── relay-connection-timeline.svg ├── relay-connection-timeline.txt ├── request-response.monopic ├── request-response.svg ├── request-response.txt ├── road.jpg ├── rocket.jpg ├── sample.js ├── server-side-batches.monopic ├── server-side-batches.svg ├── simpler.jpg ├── speed.jpg ├── split.jpg ├── stars.jpg ├── stretch.jpg ├── timeline.monopic ├── timeline.svg ├── timeline.txt ├── tracked-queries.jpg ├── tti.jpg ├── vendor │ └── highlight │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.ru.md │ │ ├── highlight.pack.js │ │ └── styles │ │ ├── agate.css │ │ ├── androidstudio.css │ │ ├── arduino-light.css │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── atelier-cave-dark.css │ │ ├── atelier-cave-light.css │ │ ├── atelier-dune-dark.css │ │ ├── atelier-dune-light.css │ │ ├── atelier-estuary-dark.css │ │ ├── atelier-estuary-light.css │ │ ├── atelier-forest-dark.css │ │ ├── atelier-forest-light.css │ │ ├── atelier-heath-dark.css │ │ ├── atelier-heath-light.css │ │ ├── atelier-lakeside-dark.css │ │ ├── atelier-lakeside-light.css │ │ ├── atelier-plateau-dark.css │ │ ├── atelier-plateau-light.css │ │ ├── atelier-savanna-dark.css │ │ ├── atelier-savanna-light.css │ │ ├── atelier-seaside-dark.css │ │ ├── atelier-seaside-light.css │ │ ├── atelier-sulphurpool-dark.css │ │ ├── atelier-sulphurpool-light.css │ │ ├── brown-paper.css │ │ ├── brown-papersq.png │ │ ├── codepen-embed.css │ │ ├── color-brewer.css │ │ ├── dark.css │ │ ├── darkula.css │ │ ├── default.css │ │ ├── docco.css │ │ ├── dracula.css │ │ ├── far.css │ │ ├── foundation.css │ │ ├── github-gist.css │ │ ├── github.css │ │ ├── googlecode.css │ │ ├── grayscale.css │ │ ├── gruvbox-dark.css │ │ ├── gruvbox-light.css │ │ ├── hopscotch.css │ │ ├── hybrid.css │ │ ├── idea.css │ │ ├── ir-black.css │ │ ├── kimbie.dark.css │ │ ├── kimbie.light.css │ │ ├── magula.css │ │ ├── mono-blue.css │ │ ├── monokai-sublime.css │ │ ├── monokai.css │ │ ├── obsidian.css │ │ ├── ocean.css │ │ ├── paraiso-dark.css │ │ ├── paraiso-light.css │ │ ├── pojoaque.css │ │ ├── pojoaque.jpg │ │ ├── purebasic.css │ │ ├── qtcreator_dark.css │ │ ├── qtcreator_light.css │ │ ├── railscasts.css │ │ ├── rainbow.css │ │ ├── school-book.css │ │ ├── school-book.png │ │ ├── solarized-dark.css │ │ ├── solarized-light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow.css │ │ ├── vs.css │ │ ├── xcode.css │ │ ├── xt256.css │ │ └── zenburn.css ├── view-hierarchy.monopic ├── view-hierarchy.svg └── view-hierarchy.txt ├── presenter.url ├── rename.rb ├── run.sh ├── screenshots └── .gitignore └── slides.url /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/README.md -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/.babelrc -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/.eslintrc -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/README.md -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/fixtures/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/fixtures/result.json -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/gulpfile.babel.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/mocha/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/mocha/bootstrap.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/mocha/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/mocha/mocha.opts -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/mocha/watch-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/mocha/watch-reporter.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/package.json -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/__mocks__/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/__mocks__/.eslintrc -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/__mocks__/sinon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/__mocks__/sinon.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/__tests__/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/__tests__/.eslintrc -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/__tests__/flatten-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/__tests__/flatten-test.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/__tests__/passthrough-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/__tests__/passthrough-test.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/arrayrefize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/arrayrefize.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/deleonize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/deleonize.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/demessagepackize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/demessagepackize.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/flatten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/flatten.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/index.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/leonize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/leonize.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/messagepackize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/messagepackize.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/passthrough.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/passthrough.js -------------------------------------------------------------------------------- /explorations/network-formats/lightweight-results/src/thin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/explorations/network-formats/lightweight-results/src/thin.js -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/README.md -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/build.sh -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/batch-protocol.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/batch-protocol.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/batch-protocol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/batch-protocol.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/bet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/bet.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/cheetah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/cheetah.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/client-side-batches.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/client-side-batches.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/client-side-batches.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/client-side-batches.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/colocated.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/colocated.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/colocated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/colocated.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/colocated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/colocated.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/compiler.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/compiler.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/compiler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/compiler.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/compiler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/compiler.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/container.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/container.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/dataloader.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/dataloader.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/dataloader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/dataloader.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/deferred.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/deferred.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/deferred.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/deferred.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/deferred.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/deferred.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/diff-query.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/diff-query.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/diff-query.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/diff-query.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/diff-query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/diff-query.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/diff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/diff.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/faster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/faster.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/fat-queries.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/fat-queries.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/framework.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/glue.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/glue.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/glue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/glue.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/glue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/glue.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/goal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/goal.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graph.png -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graphql-query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graphql-query.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graphql-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graphql-result.json -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graphql-with-connection-query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graphql-with-connection-query.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graphql-with-connection-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graphql-with-connection-result.json -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graphql-with-inline-fragment-query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graphql-with-inline-fragment-query.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graphql-with-inline-fragment-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/graphql-with-inline-fragment-result.json -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/index.html -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/native-prefetching-timeline.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/native-prefetching-timeline.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/native-prefetching-timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/native-prefetching-timeline.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/native-prefetching-timeline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/native-prefetching-timeline.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/performance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/performance.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/philosoraptor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/philosoraptor.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/phone.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/predictable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/predictable.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/react.js -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/relay-1-ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/relay-1-ast.js -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/relay-1.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/relay-1.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/relay-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/relay-1.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/relay-connection-timeline.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/relay-connection-timeline.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/relay-connection-timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/relay-connection-timeline.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/relay-connection-timeline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/relay-connection-timeline.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/request-response.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/request-response.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/request-response.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/request-response.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/request-response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/request-response.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/road.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/rocket.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/sample.js -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/server-side-batches.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/server-side-batches.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/server-side-batches.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/server-side-batches.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/simpler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/simpler.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/speed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/speed.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/split.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/split.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/stars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/stars.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/stretch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/stretch.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/timeline.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/timeline.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/timeline.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/timeline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/timeline.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/tracked-queries.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/tracked-queries.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/tti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/tti.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/CHANGES.md -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/LICENSE -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/README.md -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/README.ru.md -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/highlight.pack.js -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/agate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/agate.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/androidstudio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/androidstudio.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/arduino-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/arduino-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/arta.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/arta.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/ascetic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/ascetic.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-cave-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-cave-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-cave-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-cave-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-dune-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-dune-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-dune-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-dune-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-estuary-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-estuary-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-estuary-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-estuary-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-forest-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-forest-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-forest-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-forest-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-heath-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-heath-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-heath-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-heath-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-lakeside-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-lakeside-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-lakeside-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-lakeside-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-plateau-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-plateau-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-plateau-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-plateau-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-savanna-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-savanna-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-savanna-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-savanna-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-seaside-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-seaside-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-seaside-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-seaside-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-sulphurpool-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-sulphurpool-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-sulphurpool-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/atelier-sulphurpool-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/brown-paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/brown-paper.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/brown-papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/brown-papersq.png -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/codepen-embed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/codepen-embed.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/color-brewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/color-brewer.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/darkula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/darkula.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/default.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/docco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/docco.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/dracula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/dracula.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/far.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/far.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/foundation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/foundation.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/github-gist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/github-gist.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/github.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/googlecode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/googlecode.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/grayscale.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/grayscale.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/gruvbox-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/gruvbox-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/gruvbox-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/gruvbox-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/hopscotch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/hopscotch.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/hybrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/hybrid.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/idea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/idea.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/ir-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/ir-black.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/kimbie.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/kimbie.dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/kimbie.light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/kimbie.light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/magula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/magula.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/mono-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/mono-blue.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/monokai-sublime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/monokai-sublime.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/monokai.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/obsidian.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/obsidian.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/ocean.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/ocean.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/paraiso-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/paraiso-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/paraiso-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/paraiso-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/pojoaque.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/pojoaque.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/pojoaque.jpg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/purebasic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/purebasic.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/qtcreator_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/qtcreator_dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/qtcreator_light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/qtcreator_light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/railscasts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/railscasts.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/rainbow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/rainbow.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/school-book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/school-book.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/school-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/school-book.png -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/solarized-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/solarized-dark.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/solarized-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/solarized-light.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/sunburst.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/tomorrow-night-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/tomorrow-night-blue.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/tomorrow-night-bright.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/tomorrow-night-bright.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/tomorrow-night-eighties.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/tomorrow-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/tomorrow-night.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/tomorrow.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/vs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/vs.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/xcode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/xcode.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/xt256.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/xt256.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/vendor/highlight/styles/zenburn.css -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/view-hierarchy.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/view-hierarchy.monopic -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/view-hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/view-hierarchy.svg -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/view-hierarchy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/content/view-hierarchy.txt -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/presenter.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/presenter.url -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/rename.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/rename.rb -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/run.sh -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/screenshots/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /presentations/2016-08-17-relay-2-simpler-faster-more-predictable/slides.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/relay-future/HEAD/presentations/2016-08-17-relay-2-simpler-faster-more-predictable/slides.url --------------------------------------------------------------------------------