gitextract_i8_mwi3q/ ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── angular.json ├── apollo.config.js ├── browserslist ├── codegen.yml ├── e2e/ │ ├── protractor.conf.js │ ├── src/ │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package.json ├── src/ │ ├── app/ │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── graphql.module.ts │ │ ├── launch-details/ │ │ │ ├── launch-details.component.css │ │ │ ├── launch-details.component.html │ │ │ ├── launch-details.component.spec.ts │ │ │ ├── launch-details.component.ts │ │ │ └── launch-details.graphql │ │ ├── launch-list/ │ │ │ ├── launch-list.component.css │ │ │ ├── launch-list.component.html │ │ │ ├── launch-list.component.spec.ts │ │ │ ├── launch-list.component.ts │ │ │ └── launch-list.graphql │ │ ├── relative-time/ │ │ │ ├── relative-time.pipe.spec.ts │ │ │ └── relative-time.pipe.ts │ │ └── services/ │ │ └── spacexGraphql.service.ts │ ├── assets/ │ │ └── .gitkeep │ ├── environments/ │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json