├── .editorconfig ├── .eslintrc.js ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .gitlab-ci.yml ├── .npmignore ├── .ouro ├── cache │ └── npm │ │ ├── apollo__client.json │ │ ├── commitlint__cli.json │ │ ├── commitlint__config-conventional.json │ │ ├── config-maker.json │ │ ├── cross-fetch.json │ │ ├── cz-conventional-changelog.json │ │ ├── eslint-config-prettier.json │ │ ├── eslint-plugin-prettier.json │ │ ├── eslint.json │ │ ├── graphql-js-tree.json │ │ ├── graphql-tag.json │ │ ├── graphql-typed-document-node__core.json │ │ ├── graphql-ws.json │ │ ├── graphql-zeus-core.json │ │ ├── graphql-zeus-jsonschema.json │ │ ├── graphql.json │ │ ├── jest.json │ │ ├── json-schema.json │ │ ├── node-fetch.json │ │ ├── prettier.json │ │ ├── react-query.json │ │ ├── ts-jest.json │ │ ├── ts-node.json │ │ ├── tsx.json │ │ ├── ttypescript.json │ │ ├── typescript-eslint__eslint-plugin.json │ │ ├── typescript-eslint__parser.json │ │ ├── typescript-transform-paths.json │ │ ├── typescript.json │ │ ├── ws.json │ │ └── yargs.json ├── graph.md ├── ontology │ └── main.md └── technologies │ ├── MAP.md │ ├── config-maker.md │ ├── cz-conventional-changelog.md │ ├── eslint-plugin-prettier.md │ ├── eslint.md │ ├── graphql-js-tree.md │ ├── graphql-tag.md │ ├── graphql-typed-document-node__core.md │ ├── graphql-ws.md │ ├── graphql-zeus-core.md │ ├── graphql-zeus-jsonschema.md │ ├── json-schema.md │ ├── prettier.md │ ├── react-query.md │ ├── ts-jest.md │ ├── ts-node.md │ ├── tsx.md │ ├── ttypescript.md │ ├── typescript-transform-paths.md │ ├── ws.md │ └── yargs.md ├── .prettierrc.js ├── CONTRIBUTING.md ├── LICENSE.md ├── NEW_VARIABLES.md ├── README.md ├── Zeus.gif ├── commitlint.config.js ├── docs ├── .gitignore ├── .next │ ├── app-build-manifest.json │ ├── build-manifest.json │ ├── cache │ │ ├── .rscinfo │ │ ├── next-devtools-config.json │ │ └── webpack │ │ │ ├── client-development │ │ │ ├── 0.pack.gz │ │ │ ├── 1.pack.gz │ │ │ ├── 2.pack.gz │ │ │ ├── index.pack.gz │ │ │ └── index.pack.gz.old │ │ │ └── server-development │ │ │ ├── 0.pack.gz │ │ │ └── index.pack.gz │ ├── package.json │ ├── prerender-manifest.json │ ├── react-loadable-manifest.json │ ├── routes-manifest.json │ ├── server │ │ ├── app-paths-manifest.json │ │ ├── app │ │ │ └── [[...slug]] │ │ │ │ ├── page.js │ │ │ │ └── page_client-reference-manifest.js │ │ ├── interception-route-rewrite-manifest.js │ │ ├── middleware-build-manifest.js │ │ ├── middleware-manifest.json │ │ ├── middleware-react-loadable-manifest.js │ │ ├── next-font-manifest.js │ │ ├── next-font-manifest.json │ │ ├── pages-manifest.json │ │ ├── server-reference-manifest.js │ │ ├── server-reference-manifest.json │ │ └── webpack-runtime.js │ ├── static │ │ └── media │ │ │ ├── 0aa834ed78bf6d07-s.woff2 │ │ │ ├── 0da54fcd0470ea43-s.woff2 │ │ │ ├── 19cfc7226ec3afaa-s.woff2 │ │ │ ├── 21350d82a1f187e9-s.woff2 │ │ │ ├── 67957d42bae0796d-s.woff2 │ │ │ ├── 680a7121f7a85e3f-s.woff2 │ │ │ ├── 886030b0b59bc5a7-s.woff2 │ │ │ ├── 8a1d8947e5852e30-s.p.woff2 │ │ │ ├── 8e9860b6e62d6359-s.woff2 │ │ │ ├── 939c4f875ee75fbb-s.woff2 │ │ │ ├── ba9851c3c22cd980-s.woff2 │ │ │ ├── bb3ef058b751a6ad-s.p.woff2 │ │ │ ├── c5fe6dc8356a8c31-s.woff2 │ │ │ ├── df0a9ae256c0569c-s.woff2 │ │ │ ├── e4af272ccee01ff0-s.p.woff2 │ │ │ └── f911b923c6adde36-s.woff2 │ ├── trace │ └── types │ │ ├── app │ │ └── [[...slug]] │ │ │ └── page.ts │ │ ├── cache-life.d.ts │ │ ├── package.json │ │ ├── routes.d.ts │ │ └── validator.ts ├── IMPLEMENTATION_STATUS.md ├── README.md ├── app │ ├── [[...slug]] │ │ └── page.tsx │ ├── layout.tsx │ └── not-found.tsx ├── components │ └── FeatureCard.tsx ├── content │ ├── 01-getting-started │ │ ├── _meta.json │ │ ├── cli-usage.mdx │ │ ├── first-query.mdx │ │ ├── installation.mdx │ │ └── quick-start.mdx │ ├── 02-core-concepts │ │ ├── _meta.json │ │ ├── chain-client.mdx │ │ ├── generated-types.mdx │ │ ├── selectors.mdx │ │ ├── thunder.mdx │ │ └── type-inference.mdx │ ├── 03-queries-mutations │ │ ├── _meta.json │ │ ├── basic-queries.mdx │ │ ├── mutations.mdx │ │ └── variables.mdx │ ├── 04-advanced │ │ ├── _meta.json │ │ └── sse-subscriptions.mdx │ ├── 05-integrations │ │ ├── _meta.json │ │ └── typed-document-node.mdx │ ├── 06-recipes │ │ └── _meta.json │ ├── 07-examples │ │ ├── _meta.json │ │ └── node-typescript.mdx │ ├── _meta.json │ ├── api-reference │ │ └── _meta.json │ ├── cli │ │ ├── _meta.json │ │ └── create.mdx │ ├── community │ │ └── _meta.json │ ├── index.mdx │ └── migration │ │ └── _meta.json ├── mdx-components.tsx ├── next-env.d.ts ├── next.config.mjs ├── opencode.jsonc ├── package.json ├── postcss.config.js ├── public │ ├── .well-known │ │ └── appspecific │ │ │ └── com.chrome.devtools.json │ ├── favicon.svg │ ├── zeus-hero.png │ └── zeus-hero.svg ├── styles │ └── globals.css ├── tailwind.config.js ├── test-results │ └── .last-run.json ├── tests │ └── homepage.spec.js └── tsconfig.json ├── examples └── typescript-node │ ├── package.json │ ├── src │ ├── index.ts │ └── zeus │ │ ├── const.ts │ │ ├── index.ts │ │ └── typedDocumentNode.ts │ ├── tsconfig.json │ └── zeus.graphql ├── images ├── example.png ├── zeus-bash-command.png ├── zeus-logo.png └── zeus.webp ├── jest.config.js ├── libBuilder.ts ├── llms.md ├── package.json ├── packages ├── graphql-zeus-core │ ├── Models │ │ ├── Environment.ts │ │ └── index.ts │ ├── README.md │ ├── TranslateGraphQL │ │ └── index.ts │ ├── TreeToTS │ │ ├── functions │ │ │ ├── apiSSESubscription │ │ │ │ └── sse.ts │ │ │ ├── apiSubscription │ │ │ │ ├── graphql-ws.ts │ │ │ │ └── legacy.ts │ │ │ ├── apiTest │ │ │ │ └── index.spec.ts │ │ │ ├── generated.ts │ │ │ └── new │ │ │ │ ├── apiFetch.ts │ │ │ │ ├── buildQuery.spec.ts │ │ │ │ ├── buildQuery.ts │ │ │ │ ├── clientFunctions.ts │ │ │ │ ├── decodeScalarsInResponse.spec.ts │ │ │ │ ├── decodeScalarsInResponse.ts │ │ │ │ ├── mocks.ts │ │ │ │ ├── models.ts │ │ │ │ ├── prepareScalarPaths.spec.ts │ │ │ │ ├── prepareScalarPaths.ts │ │ │ │ ├── purifyGraphQLKey.spec.ts │ │ │ │ ├── purifyGraphQLKey.ts │ │ │ │ ├── resolvePath.spec.ts │ │ │ │ ├── resolvePath.ts │ │ │ │ ├── resolverFor.ts │ │ │ │ ├── types.ts │ │ │ │ └── variableExtract.ts │ │ ├── index.ts │ │ └── templates │ │ │ ├── modelTypes │ │ │ └── index.ts │ │ │ ├── operations │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ │ ├── returnedPropTypes │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ │ ├── returnedReturns.ts │ │ │ ├── returnedTypes │ │ │ ├── enum.spec.ts │ │ │ ├── enum.ts │ │ │ ├── index.ts │ │ │ ├── interfaces.spec.ts │ │ │ ├── interfaces.ts │ │ │ ├── models.ts │ │ │ ├── unionMember.spec.ts │ │ │ ├── unionMember.ts │ │ │ ├── unions.spec.ts │ │ │ └── unions.ts │ │ │ ├── scalars │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ │ ├── shared │ │ │ ├── description.spec.ts │ │ │ ├── description.ts │ │ │ ├── field.spec.ts │ │ │ ├── field.ts │ │ │ ├── primitive.spec.ts │ │ │ └── primitive.ts │ │ │ ├── truthy.ts │ │ │ ├── valueTypes │ │ │ ├── arg.spec.ts │ │ │ ├── arg.ts │ │ │ ├── index.ts │ │ │ ├── inputTypes │ │ │ │ ├── arg.ts │ │ │ │ └── index.ts │ │ │ └── models.ts │ │ │ └── variableTypes │ │ │ └── index.ts │ ├── __tests__ │ │ └── TestUtils.ts │ ├── index.ts │ ├── jest.config.js │ ├── package.json │ ├── tsconfig.build.json │ └── tsconfig.json ├── graphql-zeus-jsonschema │ ├── TreeToJSONSchema │ │ ├── index.spec.ts │ │ └── index.ts │ ├── index.ts │ ├── jest.config.js │ ├── package.json │ ├── tsconfig.build.json │ └── tsconfig.json └── graphql-zeus │ ├── CLIClass.ts │ ├── README.md │ ├── Utils │ └── index.ts │ ├── commands │ └── create.ts │ ├── config.ts │ ├── index.ts │ ├── package.json │ ├── plugins │ └── typedDocumentNode │ │ └── index.ts │ ├── starters │ ├── nextjs │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── README.md │ │ ├── app │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── eslint.config.mjs │ │ ├── next.config.ts │ │ ├── package.json │ │ ├── postcss.config.mjs │ │ ├── public │ │ │ └── .gitkeep │ │ └── tsconfig.json │ └── vite │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package.json │ │ ├── public │ │ └── .gitkeep │ │ ├── src │ │ ├── App.tsx │ │ ├── index.css │ │ ├── main.tsx │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ └── tsconfig.json ├── plan.docs.md ├── run-example.sh └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.npmignore -------------------------------------------------------------------------------- /.ouro/cache/npm/apollo__client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/apollo__client.json -------------------------------------------------------------------------------- /.ouro/cache/npm/commitlint__cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/commitlint__cli.json -------------------------------------------------------------------------------- /.ouro/cache/npm/commitlint__config-conventional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/commitlint__config-conventional.json -------------------------------------------------------------------------------- /.ouro/cache/npm/config-maker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/config-maker.json -------------------------------------------------------------------------------- /.ouro/cache/npm/cross-fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/cross-fetch.json -------------------------------------------------------------------------------- /.ouro/cache/npm/cz-conventional-changelog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/cz-conventional-changelog.json -------------------------------------------------------------------------------- /.ouro/cache/npm/eslint-config-prettier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/eslint-config-prettier.json -------------------------------------------------------------------------------- /.ouro/cache/npm/eslint-plugin-prettier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/eslint-plugin-prettier.json -------------------------------------------------------------------------------- /.ouro/cache/npm/eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/eslint.json -------------------------------------------------------------------------------- /.ouro/cache/npm/graphql-js-tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/graphql-js-tree.json -------------------------------------------------------------------------------- /.ouro/cache/npm/graphql-tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/graphql-tag.json -------------------------------------------------------------------------------- /.ouro/cache/npm/graphql-typed-document-node__core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/graphql-typed-document-node__core.json -------------------------------------------------------------------------------- /.ouro/cache/npm/graphql-ws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/graphql-ws.json -------------------------------------------------------------------------------- /.ouro/cache/npm/graphql-zeus-core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/graphql-zeus-core.json -------------------------------------------------------------------------------- /.ouro/cache/npm/graphql-zeus-jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/graphql-zeus-jsonschema.json -------------------------------------------------------------------------------- /.ouro/cache/npm/graphql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/graphql.json -------------------------------------------------------------------------------- /.ouro/cache/npm/jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/jest.json -------------------------------------------------------------------------------- /.ouro/cache/npm/json-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/json-schema.json -------------------------------------------------------------------------------- /.ouro/cache/npm/node-fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/node-fetch.json -------------------------------------------------------------------------------- /.ouro/cache/npm/prettier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/prettier.json -------------------------------------------------------------------------------- /.ouro/cache/npm/react-query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/react-query.json -------------------------------------------------------------------------------- /.ouro/cache/npm/ts-jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/ts-jest.json -------------------------------------------------------------------------------- /.ouro/cache/npm/ts-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/ts-node.json -------------------------------------------------------------------------------- /.ouro/cache/npm/tsx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/tsx.json -------------------------------------------------------------------------------- /.ouro/cache/npm/ttypescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/ttypescript.json -------------------------------------------------------------------------------- /.ouro/cache/npm/typescript-eslint__eslint-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/typescript-eslint__eslint-plugin.json -------------------------------------------------------------------------------- /.ouro/cache/npm/typescript-eslint__parser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/typescript-eslint__parser.json -------------------------------------------------------------------------------- /.ouro/cache/npm/typescript-transform-paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/typescript-transform-paths.json -------------------------------------------------------------------------------- /.ouro/cache/npm/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/typescript.json -------------------------------------------------------------------------------- /.ouro/cache/npm/ws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/ws.json -------------------------------------------------------------------------------- /.ouro/cache/npm/yargs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/cache/npm/yargs.json -------------------------------------------------------------------------------- /.ouro/graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/graph.md -------------------------------------------------------------------------------- /.ouro/ontology/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/ontology/main.md -------------------------------------------------------------------------------- /.ouro/technologies/MAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/MAP.md -------------------------------------------------------------------------------- /.ouro/technologies/config-maker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/config-maker.md -------------------------------------------------------------------------------- /.ouro/technologies/cz-conventional-changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/cz-conventional-changelog.md -------------------------------------------------------------------------------- /.ouro/technologies/eslint-plugin-prettier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/eslint-plugin-prettier.md -------------------------------------------------------------------------------- /.ouro/technologies/eslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/eslint.md -------------------------------------------------------------------------------- /.ouro/technologies/graphql-js-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/graphql-js-tree.md -------------------------------------------------------------------------------- /.ouro/technologies/graphql-tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/graphql-tag.md -------------------------------------------------------------------------------- /.ouro/technologies/graphql-typed-document-node__core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/graphql-typed-document-node__core.md -------------------------------------------------------------------------------- /.ouro/technologies/graphql-ws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/graphql-ws.md -------------------------------------------------------------------------------- /.ouro/technologies/graphql-zeus-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/graphql-zeus-core.md -------------------------------------------------------------------------------- /.ouro/technologies/graphql-zeus-jsonschema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/graphql-zeus-jsonschema.md -------------------------------------------------------------------------------- /.ouro/technologies/json-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/json-schema.md -------------------------------------------------------------------------------- /.ouro/technologies/prettier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/prettier.md -------------------------------------------------------------------------------- /.ouro/technologies/react-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/react-query.md -------------------------------------------------------------------------------- /.ouro/technologies/ts-jest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/ts-jest.md -------------------------------------------------------------------------------- /.ouro/technologies/ts-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/ts-node.md -------------------------------------------------------------------------------- /.ouro/technologies/tsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/tsx.md -------------------------------------------------------------------------------- /.ouro/technologies/ttypescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/ttypescript.md -------------------------------------------------------------------------------- /.ouro/technologies/typescript-transform-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/typescript-transform-paths.md -------------------------------------------------------------------------------- /.ouro/technologies/ws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/ws.md -------------------------------------------------------------------------------- /.ouro/technologies/yargs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.ouro/technologies/yargs.md -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NEW_VARIABLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/NEW_VARIABLES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/README.md -------------------------------------------------------------------------------- /Zeus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/Zeus.gif -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.next/app-build-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/app-build-manifest.json -------------------------------------------------------------------------------- /docs/.next/build-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/build-manifest.json -------------------------------------------------------------------------------- /docs/.next/cache/.rscinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/cache/.rscinfo -------------------------------------------------------------------------------- /docs/.next/cache/next-devtools-config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /docs/.next/cache/webpack/client-development/0.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/cache/webpack/client-development/0.pack.gz -------------------------------------------------------------------------------- /docs/.next/cache/webpack/client-development/1.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/cache/webpack/client-development/1.pack.gz -------------------------------------------------------------------------------- /docs/.next/cache/webpack/client-development/2.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/cache/webpack/client-development/2.pack.gz -------------------------------------------------------------------------------- /docs/.next/cache/webpack/client-development/index.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/cache/webpack/client-development/index.pack.gz -------------------------------------------------------------------------------- /docs/.next/cache/webpack/client-development/index.pack.gz.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/cache/webpack/client-development/index.pack.gz.old -------------------------------------------------------------------------------- /docs/.next/cache/webpack/server-development/0.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/cache/webpack/server-development/0.pack.gz -------------------------------------------------------------------------------- /docs/.next/cache/webpack/server-development/index.pack.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/cache/webpack/server-development/index.pack.gz -------------------------------------------------------------------------------- /docs/.next/package.json: -------------------------------------------------------------------------------- 1 | {"type": "commonjs"} -------------------------------------------------------------------------------- /docs/.next/prerender-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/prerender-manifest.json -------------------------------------------------------------------------------- /docs/.next/react-loadable-manifest.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /docs/.next/routes-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/routes-manifest.json -------------------------------------------------------------------------------- /docs/.next/server/app-paths-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/server/app-paths-manifest.json -------------------------------------------------------------------------------- /docs/.next/server/app/[[...slug]]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/server/app/[[...slug]]/page.js -------------------------------------------------------------------------------- /docs/.next/server/app/[[...slug]]/page_client-reference-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/server/app/[[...slug]]/page_client-reference-manifest.js -------------------------------------------------------------------------------- /docs/.next/server/interception-route-rewrite-manifest.js: -------------------------------------------------------------------------------- 1 | self.__INTERCEPTION_ROUTE_REWRITE_MANIFEST="[]"; -------------------------------------------------------------------------------- /docs/.next/server/middleware-build-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/server/middleware-build-manifest.js -------------------------------------------------------------------------------- /docs/.next/server/middleware-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/server/middleware-manifest.json -------------------------------------------------------------------------------- /docs/.next/server/middleware-react-loadable-manifest.js: -------------------------------------------------------------------------------- 1 | self.__REACT_LOADABLE_MANIFEST="{}"; -------------------------------------------------------------------------------- /docs/.next/server/next-font-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/server/next-font-manifest.js -------------------------------------------------------------------------------- /docs/.next/server/next-font-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/server/next-font-manifest.json -------------------------------------------------------------------------------- /docs/.next/server/pages-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/server/pages-manifest.json -------------------------------------------------------------------------------- /docs/.next/server/server-reference-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/server/server-reference-manifest.js -------------------------------------------------------------------------------- /docs/.next/server/server-reference-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/server/server-reference-manifest.json -------------------------------------------------------------------------------- /docs/.next/server/webpack-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/server/webpack-runtime.js -------------------------------------------------------------------------------- /docs/.next/static/media/0aa834ed78bf6d07-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/0aa834ed78bf6d07-s.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/0da54fcd0470ea43-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/0da54fcd0470ea43-s.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/19cfc7226ec3afaa-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/19cfc7226ec3afaa-s.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/21350d82a1f187e9-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/21350d82a1f187e9-s.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/67957d42bae0796d-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/67957d42bae0796d-s.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/680a7121f7a85e3f-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/680a7121f7a85e3f-s.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/886030b0b59bc5a7-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/886030b0b59bc5a7-s.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/8a1d8947e5852e30-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/8a1d8947e5852e30-s.p.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/8e9860b6e62d6359-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/8e9860b6e62d6359-s.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/939c4f875ee75fbb-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/939c4f875ee75fbb-s.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/ba9851c3c22cd980-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/ba9851c3c22cd980-s.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/bb3ef058b751a6ad-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/bb3ef058b751a6ad-s.p.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/c5fe6dc8356a8c31-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/c5fe6dc8356a8c31-s.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/df0a9ae256c0569c-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/df0a9ae256c0569c-s.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/e4af272ccee01ff0-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/e4af272ccee01ff0-s.p.woff2 -------------------------------------------------------------------------------- /docs/.next/static/media/f911b923c6adde36-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/static/media/f911b923c6adde36-s.woff2 -------------------------------------------------------------------------------- /docs/.next/trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/trace -------------------------------------------------------------------------------- /docs/.next/types/app/[[...slug]]/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/types/app/[[...slug]]/page.ts -------------------------------------------------------------------------------- /docs/.next/types/cache-life.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/types/cache-life.d.ts -------------------------------------------------------------------------------- /docs/.next/types/package.json: -------------------------------------------------------------------------------- 1 | {"type": "module"} -------------------------------------------------------------------------------- /docs/.next/types/routes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/types/routes.d.ts -------------------------------------------------------------------------------- /docs/.next/types/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/.next/types/validator.ts -------------------------------------------------------------------------------- /docs/IMPLEMENTATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/IMPLEMENTATION_STATUS.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/app/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/app/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /docs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/app/layout.tsx -------------------------------------------------------------------------------- /docs/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/app/not-found.tsx -------------------------------------------------------------------------------- /docs/components/FeatureCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/components/FeatureCard.tsx -------------------------------------------------------------------------------- /docs/content/01-getting-started/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/01-getting-started/_meta.json -------------------------------------------------------------------------------- /docs/content/01-getting-started/cli-usage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/01-getting-started/cli-usage.mdx -------------------------------------------------------------------------------- /docs/content/01-getting-started/first-query.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/01-getting-started/first-query.mdx -------------------------------------------------------------------------------- /docs/content/01-getting-started/installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/01-getting-started/installation.mdx -------------------------------------------------------------------------------- /docs/content/01-getting-started/quick-start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/01-getting-started/quick-start.mdx -------------------------------------------------------------------------------- /docs/content/02-core-concepts/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/02-core-concepts/_meta.json -------------------------------------------------------------------------------- /docs/content/02-core-concepts/chain-client.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/02-core-concepts/chain-client.mdx -------------------------------------------------------------------------------- /docs/content/02-core-concepts/generated-types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/02-core-concepts/generated-types.mdx -------------------------------------------------------------------------------- /docs/content/02-core-concepts/selectors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/02-core-concepts/selectors.mdx -------------------------------------------------------------------------------- /docs/content/02-core-concepts/thunder.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/02-core-concepts/thunder.mdx -------------------------------------------------------------------------------- /docs/content/02-core-concepts/type-inference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/02-core-concepts/type-inference.mdx -------------------------------------------------------------------------------- /docs/content/03-queries-mutations/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/03-queries-mutations/_meta.json -------------------------------------------------------------------------------- /docs/content/03-queries-mutations/basic-queries.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/03-queries-mutations/basic-queries.mdx -------------------------------------------------------------------------------- /docs/content/03-queries-mutations/mutations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/03-queries-mutations/mutations.mdx -------------------------------------------------------------------------------- /docs/content/03-queries-mutations/variables.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/03-queries-mutations/variables.mdx -------------------------------------------------------------------------------- /docs/content/04-advanced/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/04-advanced/_meta.json -------------------------------------------------------------------------------- /docs/content/04-advanced/sse-subscriptions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/04-advanced/sse-subscriptions.mdx -------------------------------------------------------------------------------- /docs/content/05-integrations/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/05-integrations/_meta.json -------------------------------------------------------------------------------- /docs/content/05-integrations/typed-document-node.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/05-integrations/typed-document-node.mdx -------------------------------------------------------------------------------- /docs/content/06-recipes/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/06-recipes/_meta.json -------------------------------------------------------------------------------- /docs/content/07-examples/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/07-examples/_meta.json -------------------------------------------------------------------------------- /docs/content/07-examples/node-typescript.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/07-examples/node-typescript.mdx -------------------------------------------------------------------------------- /docs/content/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/_meta.json -------------------------------------------------------------------------------- /docs/content/api-reference/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/api-reference/_meta.json -------------------------------------------------------------------------------- /docs/content/cli/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/cli/_meta.json -------------------------------------------------------------------------------- /docs/content/cli/create.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/cli/create.mdx -------------------------------------------------------------------------------- /docs/content/community/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/community/_meta.json -------------------------------------------------------------------------------- /docs/content/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/index.mdx -------------------------------------------------------------------------------- /docs/content/migration/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/content/migration/_meta.json -------------------------------------------------------------------------------- /docs/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/mdx-components.tsx -------------------------------------------------------------------------------- /docs/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/next-env.d.ts -------------------------------------------------------------------------------- /docs/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/next.config.mjs -------------------------------------------------------------------------------- /docs/opencode.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/opencode.jsonc -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/postcss.config.js -------------------------------------------------------------------------------- /docs/public/.well-known/appspecific/com.chrome.devtools.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/public/favicon.svg -------------------------------------------------------------------------------- /docs/public/zeus-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/public/zeus-hero.png -------------------------------------------------------------------------------- /docs/public/zeus-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/public/zeus-hero.svg -------------------------------------------------------------------------------- /docs/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/styles/globals.css -------------------------------------------------------------------------------- /docs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/tailwind.config.js -------------------------------------------------------------------------------- /docs/test-results/.last-run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/test-results/.last-run.json -------------------------------------------------------------------------------- /docs/tests/homepage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/tests/homepage.spec.js -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /examples/typescript-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/examples/typescript-node/package.json -------------------------------------------------------------------------------- /examples/typescript-node/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/examples/typescript-node/src/index.ts -------------------------------------------------------------------------------- /examples/typescript-node/src/zeus/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/examples/typescript-node/src/zeus/const.ts -------------------------------------------------------------------------------- /examples/typescript-node/src/zeus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/examples/typescript-node/src/zeus/index.ts -------------------------------------------------------------------------------- /examples/typescript-node/src/zeus/typedDocumentNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/examples/typescript-node/src/zeus/typedDocumentNode.ts -------------------------------------------------------------------------------- /examples/typescript-node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/examples/typescript-node/tsconfig.json -------------------------------------------------------------------------------- /examples/typescript-node/zeus.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/examples/typescript-node/zeus.graphql -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/images/example.png -------------------------------------------------------------------------------- /images/zeus-bash-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/images/zeus-bash-command.png -------------------------------------------------------------------------------- /images/zeus-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/images/zeus-logo.png -------------------------------------------------------------------------------- /images/zeus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/images/zeus.webp -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/jest.config.js -------------------------------------------------------------------------------- /libBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/libBuilder.ts -------------------------------------------------------------------------------- /llms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/llms.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/package.json -------------------------------------------------------------------------------- /packages/graphql-zeus-core/Models/Environment.ts: -------------------------------------------------------------------------------- 1 | export type Environment = 'browser' | 'node'; 2 | -------------------------------------------------------------------------------- /packages/graphql-zeus-core/Models/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Environment'; 2 | -------------------------------------------------------------------------------- /packages/graphql-zeus-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/README.md -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TranslateGraphQL/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TranslateGraphQL/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/apiSSESubscription/sse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/apiSSESubscription/sse.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/apiSubscription/graphql-ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/apiSubscription/graphql-ws.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/apiSubscription/legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/apiSubscription/legacy.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/apiTest/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/apiTest/index.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/generated.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/apiFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/apiFetch.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/buildQuery.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/buildQuery.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/buildQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/buildQuery.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/clientFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/clientFunctions.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/decodeScalarsInResponse.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/decodeScalarsInResponse.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/decodeScalarsInResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/decodeScalarsInResponse.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/mocks.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/models.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/prepareScalarPaths.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/prepareScalarPaths.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/prepareScalarPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/prepareScalarPaths.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/purifyGraphQLKey.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/purifyGraphQLKey.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/purifyGraphQLKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/purifyGraphQLKey.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/resolvePath.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/resolvePath.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/resolvePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/resolvePath.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/resolverFor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/resolverFor.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/types.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/functions/new/variableExtract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/functions/new/variableExtract.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/modelTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/modelTypes/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/operations/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/operations/index.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/operations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/operations/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedPropTypes/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedPropTypes/index.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedPropTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedPropTypes/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedReturns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedReturns.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/enum.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/enum.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/enum.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/interfaces.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/interfaces.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/interfaces.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/models.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/unionMember.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/unionMember.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/unionMember.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/unionMember.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/unions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/unions.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/unions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/returnedTypes/unions.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/scalars/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/scalars/index.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/scalars/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/scalars/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/shared/description.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/shared/description.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/shared/description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/shared/description.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/shared/field.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/shared/field.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/shared/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/shared/field.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/shared/primitive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/shared/primitive.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/shared/primitive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/shared/primitive.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/truthy.ts: -------------------------------------------------------------------------------- 1 | export const truthyType = 'boolean | `@${string}`'; 2 | -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/valueTypes/arg.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/valueTypes/arg.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/valueTypes/arg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/valueTypes/arg.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/valueTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/valueTypes/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/valueTypes/inputTypes/arg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/valueTypes/inputTypes/arg.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/valueTypes/inputTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/valueTypes/inputTypes/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/valueTypes/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/valueTypes/models.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/TreeToTS/templates/variableTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/TreeToTS/templates/variableTypes/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/__tests__/TestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/__tests__/TestUtils.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-core/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/jest.config.js -------------------------------------------------------------------------------- /packages/graphql-zeus-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/package.json -------------------------------------------------------------------------------- /packages/graphql-zeus-core/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/tsconfig.build.json -------------------------------------------------------------------------------- /packages/graphql-zeus-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-core/tsconfig.json -------------------------------------------------------------------------------- /packages/graphql-zeus-jsonschema/TreeToJSONSchema/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-jsonschema/TreeToJSONSchema/index.spec.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-jsonschema/TreeToJSONSchema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-jsonschema/TreeToJSONSchema/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus-jsonschema/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TreeToJSONSchema'; 2 | -------------------------------------------------------------------------------- /packages/graphql-zeus-jsonschema/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-jsonschema/jest.config.js -------------------------------------------------------------------------------- /packages/graphql-zeus-jsonschema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-jsonschema/package.json -------------------------------------------------------------------------------- /packages/graphql-zeus-jsonschema/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-jsonschema/tsconfig.build.json -------------------------------------------------------------------------------- /packages/graphql-zeus-jsonschema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus-jsonschema/tsconfig.json -------------------------------------------------------------------------------- /packages/graphql-zeus/CLIClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/CLIClass.ts -------------------------------------------------------------------------------- /packages/graphql-zeus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/README.md -------------------------------------------------------------------------------- /packages/graphql-zeus/Utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/Utils/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus/commands/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/commands/create.ts -------------------------------------------------------------------------------- /packages/graphql-zeus/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/config.ts -------------------------------------------------------------------------------- /packages/graphql-zeus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/package.json -------------------------------------------------------------------------------- /packages/graphql-zeus/plugins/typedDocumentNode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/plugins/typedDocumentNode/index.ts -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/nextjs/.env.example -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/nextjs/.gitignore -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/nextjs/.prettierignore -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/nextjs/.prettierrc -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/nextjs/README.md -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/app/globals.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss'; 2 | -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/nextjs/app/layout.tsx -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/nextjs/app/page.tsx -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/nextjs/eslint.config.mjs -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/nextjs/next.config.ts -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/nextjs/package.json -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/nextjs/postcss.config.mjs -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/nextjs/tsconfig.json -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/.env.example -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/.gitignore -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/.prettierignore -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/.prettierrc -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/README.md -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/eslint.config.js -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/index.html -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/package.json -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/src/App.tsx -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/src/index.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss'; 2 | -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/src/main.tsx -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/tsconfig.json -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/tsconfig.node.json -------------------------------------------------------------------------------- /packages/graphql-zeus/starters/vite/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/starters/vite/vite.config.ts -------------------------------------------------------------------------------- /packages/graphql-zeus/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/packages/graphql-zeus/tsconfig.json -------------------------------------------------------------------------------- /plan.docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/plan.docs.md -------------------------------------------------------------------------------- /run-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/run-example.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-editor/graphql-zeus/HEAD/tsconfig.json --------------------------------------------------------------------------------