gitextract_o2atgi3y/ ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── example/ │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── data/ │ │ └── schema.graphql │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── relay.config.js │ ├── src/ │ │ ├── lib/ │ │ │ ├── relay_client_environment.ts │ │ │ └── server/ │ │ │ └── relay_server_environment.ts │ │ ├── pages/ │ │ │ ├── _app.tsx │ │ │ ├── film/ │ │ │ │ └── [id].tsx │ │ │ └── index.tsx │ │ └── queries/ │ │ └── __generated__/ │ │ ├── Id_filmDescription.graphql.ts │ │ ├── Id_filmQuery.graphql.ts │ │ └── pages_listFilmsQuery.graphql.ts │ ├── tailwind.config.js │ └── tsconfig.json ├── package.json ├── src/ │ ├── app.ts │ ├── component.tsx │ ├── index.tsx │ └── json_meta.ts ├── tsconfig.json └── website/ ├── .gitignore ├── README.md ├── babel.config.js ├── docs/ │ ├── app-api.md │ ├── configuration.md │ ├── installation-and-setup.md │ ├── lazy-loaded-query.md │ ├── page-api.md │ ├── prerequisites.md │ └── what-why.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src/ │ ├── css/ │ │ └── custom.css │ └── pages/ │ ├── index.js │ └── styles.module.css └── static/ └── .nojekyll