gitextract_qxbkef7i/ ├── .babelrc ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── docs/ │ └── why-relay.html ├── index.html ├── package.json ├── server.js ├── src/ │ ├── components/ │ │ ├── App.jsx │ │ ├── App.scss │ │ ├── Diagram.jsx │ │ ├── Topic.jsx │ │ └── Topic.scss │ ├── diagram-data.js │ ├── diagrams/ │ │ ├── connection-field.xml │ │ ├── container.xml │ │ ├── fields.xml │ │ ├── global-id-field.xml │ │ ├── graphql-implementation.xml │ │ ├── mutation-type.xml │ │ ├── mutations.xml │ │ ├── network-layer.xml │ │ ├── object-type.xml │ │ ├── query-config.xml │ │ ├── query-type.xml │ │ ├── react-component.xml │ │ ├── relay.xml │ │ ├── root-container.xml │ │ ├── schema-copy.xml │ │ ├── schema.xml │ │ └── web-framework.xml │ ├── index.js │ ├── shared/ │ │ └── styles/ │ │ └── colors.scss │ └── topics/ │ ├── backend.js │ ├── container.js │ ├── graphql-impl.js │ ├── graphql-schema.js │ ├── mutation-type.js │ ├── mutations.js │ ├── network-layer.js │ ├── object-type-fields.js │ ├── object-type.js │ ├── query-config.js │ ├── query-type.js │ ├── react-component.js │ ├── relay.js │ ├── root-container.js │ ├── schema-copy.js │ └── web-framework.js ├── svgGroup.loader.js ├── webpack.config.js └── webpack.production.config.js