gitextract_ex53v_nb/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── algolia-integrity.yml │ ├── algolia-publish.yml │ ├── main.yml │ └── website.yml ├── .gitignore ├── .npmrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs/ │ ├── CUSTOM_EXTENSION.md │ └── MIGRATION.md ├── integration/ │ ├── package.json │ ├── test-project/ │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .graphqlrc.yml │ │ ├── package.json │ │ ├── renovate.json │ │ ├── schema/ │ │ │ └── schema.graphql │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── tests/ │ │ └── workflow.ts │ └── tsconfig.json ├── lerna.json ├── package.json ├── packages/ │ ├── cli/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── bin.ts │ │ │ ├── discover.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── commands/ │ │ ├── generate/ │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── init/ │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── common.ts │ │ │ │ ├── features/ │ │ │ │ │ ├── codegen.ts │ │ │ │ │ └── inspector.ts │ │ │ │ ├── index.ts │ │ │ │ ├── search-codegen-config.ts │ │ │ │ └── sources/ │ │ │ │ ├── from-existing.ts │ │ │ │ ├── from-open-api.ts │ │ │ │ └── from-scratch.ts │ │ │ └── tsconfig.json │ │ └── serve/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── common/ │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── package.json │ │ ├── src/ │ │ │ ├── command.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── tsconfig.json │ └── loaders/ │ ├── .gitignore │ ├── .npmignore │ ├── package.json │ ├── src/ │ │ └── index.ts │ └── tsconfig.json ├── renovate.json ├── scripts/ │ ├── introspect-config.js │ └── release.js ├── templates/ │ └── fullstack/ │ ├── .dockerignore │ ├── .gitignore │ ├── .graphqlrc.yml │ ├── Dockerfile │ ├── README.md │ ├── client/ │ │ ├── .gitignore │ │ ├── generated-types.tsx │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components/ │ │ │ │ ├── comment/ │ │ │ │ │ ├── Comment.css │ │ │ │ │ ├── CreateComment.tsx │ │ │ │ │ └── OneComment.tsx │ │ │ │ └── notes/ │ │ │ │ ├── CreateNote.tsx │ │ │ │ ├── EditNote.tsx │ │ │ │ ├── Note.css │ │ │ │ └── OneNote.tsx │ │ │ ├── generated-types.tsx │ │ │ ├── graphql/ │ │ │ │ └── graphback.graphql │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── react-app-env.d.ts │ │ │ └── serviceWorker.ts │ │ └── tsconfig.json │ ├── docker-compose.yml │ ├── model/ │ │ └── datamodel.graphql │ ├── package.json │ ├── renovate.json │ ├── schemats.json │ ├── server/ │ │ ├── package.json │ │ ├── src/ │ │ │ ├── db.ts │ │ │ ├── generated-db-types.ts │ │ │ ├── generated-types.ts │ │ │ ├── graphql.ts │ │ │ ├── index.ts │ │ │ └── schema/ │ │ │ └── schema.graphql │ │ └── tsconfig.json │ └── tslint.json ├── templates.json └── website/ ├── .gitignore ├── README.md ├── algolia-lockfile.json ├── babel.config.js ├── docs/ │ ├── codegen.md │ ├── coverage.md │ ├── custom-commands.md │ ├── diff.md │ ├── discover.md │ ├── generate.md │ ├── init.md │ ├── introduction.md │ ├── introspect.md │ ├── migration.md │ ├── serve.md │ ├── similar.md │ └── validate.md ├── docusaurus.config.js ├── package.json ├── scripts/ │ └── algolia-ci.ts ├── sidebars.js ├── src/ │ ├── css/ │ │ └── custom.css │ ├── pages/ │ │ ├── index.js │ │ └── styles.module.css │ └── theme/ │ └── Root.js └── static/ ├── CNAME └── js/ └── light-mode-by-default.js