├── .github
├── renovate.json
├── semantic.yml
└── workflows
│ ├── pr.yml
│ └── trunk.yml
├── .gitignore
├── .prettierrc
├── .vscode
├── launch.json
└── settings.json
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE.md
├── README.md
├── codecov.yml
├── docs
├── .env.example
├── .gitignore
├── .prettierignore
├── .prettierrc
├── LICENSE
├── README.md
├── config.js
├── content
│ ├── 010-getting-started
│ │ ├── 03-tutorial
│ │ │ ├── 01-chapter-0-introduction.mdx
│ │ │ ├── 02-chapter-1-setup-and-first-query.mdx
│ │ │ ├── 03-chapter-2-writing-your-first-schema.mdx
│ │ │ ├── 04-chapter-3-adding-mutations-to-your-api.mdx
│ │ │ ├── 05-chapter-4-testing-your-api.mdx
│ │ │ ├── 06-chapter-5-persisting-data-via-prisma.mdx
│ │ │ ├── 07-chapter-6-testing-with-prisma.mdx
│ │ │ └── index.mdx
│ │ ├── 04-why-nexus.mdx
│ │ ├── 05-examples.mdx
│ │ └── index.mdx
│ ├── 014-guides
│ │ ├── 020-schema.mdx
│ │ ├── 021-nullability.mdx
│ │ ├── 022-source-types.mdx
│ │ ├── 025-abstract-types.mdx
│ │ ├── 030-library-authors.mdx
│ │ ├── 040-best-practices.mdx
│ │ ├── 050-generated-artifacts.mdx
│ │ └── index.mdx
│ ├── 015-api
│ │ ├── 009-introduction.mdx
│ │ ├── 010-object-type.mdx
│ │ ├── 011-subscription-type.mdx
│ │ ├── 020-union-type.mdx
│ │ ├── 030-scalar-type.mdx
│ │ ├── 040-interface-type.mdx
│ │ ├── 050-enum-type.mdx
│ │ ├── 050-input-object-type.mdx
│ │ ├── 060-args.mdx
│ │ ├── 061-list-nonNull.mdx
│ │ ├── 070-make-schema.mdx
│ │ ├── 080-extend-type.mdx
│ │ ├── 090-mutation-field.mdx
│ │ ├── 100-query-field.mdx
│ │ ├── 101-subscription-field.mdx
│ │ ├── 110-plugins.mdx
│ │ └── index.mdx
│ ├── 030-plugins
│ │ ├── 01-connection.mdx
│ │ ├── 02-declarativeWrapping.mdx
│ │ ├── 03-field-authorize.mdx
│ │ ├── 04-query-complexity.mdx
│ │ ├── 05-nullability-guard.mdx
│ │ ├── 050-prisma
│ │ │ ├── 010-overview.mdx
│ │ │ ├── 030-api.mdx
│ │ │ ├── 040-removing-the-nexus-plugin-prisma.mdx
│ │ │ └── index.mdx
│ │ └── index.mdx
│ ├── 040-adoption-guides
│ │ ├── 010-prisma-users.mdx
│ │ ├── 011-nextjs-users.mdx
│ │ ├── 020-nexus-framework-users.mdx
│ │ ├── 030-neuxs-framework-prisma-users.mdx
│ │ └── index.mdx
│ ├── 099-hack.mdx
│ └── index.mdx
├── functions
│ └── index.js
├── gatsby-browser.js
├── gatsby-config.js
├── gatsby-node.js
├── gatsby-ssr.js
├── images.d.ts
├── jest.setup.js
├── netlify.toml
├── package.json
├── plugins
│ ├── gatsby-remark-check-links-numberless
│ │ ├── index.js
│ │ └── package.json
│ └── gatsby-remark-to-absoluteurl
│ │ ├── index.js
│ │ └── package.json
├── prisma
│ ├── migrations
│ │ └── dev
│ │ │ └── watch-20200414152651
│ │ │ ├── README.md
│ │ │ ├── schema.prisma
│ │ │ └── steps.json
│ └── schema.prisma
├── schema.sql
├── src
│ ├── components
│ │ ├── customMdx
│ │ │ ├── button.tsx
│ │ │ ├── code.tsx
│ │ │ ├── codeBlock.tsx
│ │ │ ├── codeWithResult.tsx
│ │ │ ├── collapsible.tsx
│ │ │ ├── copy.tsx
│ │ │ ├── fileWithIcon.tsx
│ │ │ ├── index.tsx
│ │ │ ├── parallelBlocks.tsx
│ │ │ ├── prism
│ │ │ │ ├── index.css
│ │ │ │ └── prism-prisma.js
│ │ │ ├── subSections.tsx
│ │ │ ├── tabbedContent.tsx
│ │ │ ├── table.tsx
│ │ │ └── topBlock.tsx
│ │ ├── footer.tsx
│ │ ├── header.tsx
│ │ ├── image.tsx
│ │ ├── layout.css
│ │ ├── layout.tsx
│ │ ├── link.tsx
│ │ ├── newsletter
│ │ │ ├── index.tsx
│ │ │ ├── mailChimp.ts
│ │ │ └── valid.ts
│ │ ├── pageBottom.tsx
│ │ ├── parentTitleComp.tsx
│ │ ├── search
│ │ │ ├── hitComps.tsx
│ │ │ ├── index.tsx
│ │ │ ├── input.tsx
│ │ │ └── overlay.tsx
│ │ ├── seo.tsx
│ │ ├── sidebar
│ │ │ ├── index.tsx
│ │ │ ├── tree.tsx
│ │ │ └── treeNode.tsx
│ │ ├── toc.tsx
│ │ └── topSection.tsx
│ ├── hooks
│ │ ├── useAllArticlesQuery.ts
│ │ └── useLayoutQuery.ts
│ ├── html.js
│ ├── icons
│ │ ├── ArrowDown.tsx
│ │ ├── ArrowEmail.tsx
│ │ ├── ArrowRight.tsx
│ │ ├── Clear.tsx
│ │ ├── Code.tsx
│ │ ├── Copy.tsx
│ │ ├── Database.tsx
│ │ ├── Display.tsx
│ │ ├── Down.tsx
│ │ ├── Email.tsx
│ │ ├── Facebook.tsx
│ │ ├── File.tsx
│ │ ├── Git.tsx
│ │ ├── GitGrey.tsx
│ │ ├── HashLink.tsx
│ │ ├── Logo.tsx
│ │ ├── PrismaLogoGrey.tsx
│ │ ├── Search.tsx
│ │ ├── Slack.tsx
│ │ ├── Twitter.tsx
│ │ ├── Up.tsx
│ │ ├── Youtube.tsx
│ │ └── technologies
│ │ │ ├── Flow.tsx
│ │ │ ├── Go.tsx
│ │ │ ├── JS.tsx
│ │ │ ├── MongoDB.tsx
│ │ │ ├── MySQL.tsx
│ │ │ ├── NodeJS.tsx
│ │ │ ├── PostgreSQL.tsx
│ │ │ ├── SQLite.tsx
│ │ │ └── Typescript.tsx
│ ├── images
│ │ ├── favicon.png
│ │ └── list-dot.png
│ ├── interfaces
│ │ ├── AllArticles.interface.ts
│ │ ├── Article.interface.ts
│ │ ├── EdgeNode.interface.ts
│ │ └── Layout.interface.ts
│ ├── layouts
│ │ └── articleLayout.tsx
│ ├── pages
│ │ └── 404.tsx
│ └── utils
│ │ ├── algolia.js
│ │ ├── goToNavItem.js
│ │ ├── parentTitle.ts
│ │ ├── stats.js
│ │ ├── stickWhenNeeded.ts
│ │ ├── stringify.ts
│ │ ├── treeData.ts
│ │ └── urlGenerator.ts
├── static
│ └── assets
│ │ ├── next-nexus-1.png
│ │ ├── next-nexus-2.png
│ │ ├── next-nexus-3.png
│ │ ├── source-type-diagram-1.png
│ │ └── source-type-diagram-2.png
├── tsconfig.json
├── tslint.json
└── yarn.lock
├── examples
├── README.md
├── apollo-fullstack
│ ├── README.md
│ ├── fullstack-schema.graphql
│ ├── package.json
│ ├── src
│ │ ├── context.ts
│ │ ├── fullstack-typegen.ts
│ │ ├── index.ts
│ │ ├── schema
│ │ │ ├── index.ts
│ │ │ ├── launch.ts
│ │ │ ├── mission.ts
│ │ │ ├── mutation.ts
│ │ │ ├── query.ts
│ │ │ ├── rocket.ts
│ │ │ └── user.ts
│ │ └── typeDefs.ts
│ ├── store.sqlite
│ ├── tsconfig.json
│ └── yarn.lock
├── ghost
│ ├── README.md
│ ├── config.development.json
│ ├── package.json
│ ├── scripts
│ │ └── dumpTables.ts
│ ├── src
│ │ ├── _ts
│ │ │ └── ghost.d.ts
│ │ ├── data-sources
│ │ │ ├── AuthSource.ts
│ │ │ ├── Context.ts
│ │ │ ├── PostSource.ts
│ │ │ └── UserSource.ts
│ │ ├── generated
│ │ │ ├── ghost-db-tables.ts
│ │ │ ├── ghost-db-types.ts
│ │ │ ├── ghost-nexus.ts
│ │ │ └── index.ts
│ │ ├── ghost-schema.graphql
│ │ ├── ghost-schema.ts
│ │ ├── index.ts
│ │ ├── schema
│ │ │ ├── Post.ts
│ │ │ ├── Query.ts
│ │ │ ├── User.ts
│ │ │ └── index.ts
│ │ └── utils
│ │ │ ├── knexInstance.ts
│ │ │ └── loaderUtils.ts
│ ├── tsconfig.json
│ └── yarn.lock
├── githunt-api
│ ├── README.md
│ ├── githunt-api-schema.graphql
│ ├── jsconfig.json
│ ├── package.json
│ ├── src
│ │ ├── githunt-typegen.ts
│ │ ├── index.js
│ │ └── schema.js
│ └── yarn.lock
├── kitchen-sink
│ ├── README.md
│ ├── kitchen-sink-schema.graphql
│ ├── package.json
│ ├── src
│ │ ├── example-plugins.ts
│ │ ├── index.ts
│ │ ├── kitchen-sink-definitions.ts
│ │ ├── kitchen-sink-globals.gen.ts
│ │ └── kitchen-sink.gen.ts
│ ├── tsconfig.json
│ └── yarn.lock
├── star-wars
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ ├── data.ts
│ │ ├── graphql
│ │ │ ├── character.ts
│ │ │ ├── droid.ts
│ │ │ ├── episode.ts
│ │ │ ├── human.ts
│ │ │ ├── index.ts
│ │ │ └── query.ts
│ │ ├── index.ts
│ │ ├── schema.ts
│ │ ├── star-wars-typegen.ts
│ │ └── types
│ │ │ ├── backingTypes.ts
│ │ │ └── context.ts
│ ├── star-wars-schema.graphql
│ ├── tsconfig.json
│ └── yarn.lock
├── ts-ast-reader
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ ├── index.ts
│ │ ├── schema.ts
│ │ ├── ts-ast-reader-typegen.ts
│ │ └── types
│ │ │ ├── context.ts
│ │ │ ├── declarations.ts
│ │ │ ├── enums.ts
│ │ │ ├── index.ts
│ │ │ ├── interfaces.ts
│ │ │ ├── jsdoc.ts
│ │ │ ├── mixins.ts
│ │ │ ├── objects.ts
│ │ │ ├── typeNodes.ts
│ │ │ ├── unions.ts
│ │ │ └── utils.ts
│ ├── test-query.graphql
│ ├── ts-ast-reader-schema.graphql
│ ├── tsconfig.json
│ └── yarn.lock
├── with-prisma
│ ├── .gitignore
│ ├── README.md
│ ├── api.graphql
│ ├── api.ts
│ ├── context.ts
│ ├── package.json
│ ├── prisma
│ │ └── schema.prisma
│ ├── tsconfig.json
│ └── yarn.lock
└── zeit-typescript
│ ├── README.md
│ ├── api
│ └── index.ts
│ ├── now.json
│ ├── package.json
│ ├── schema
│ ├── User.ts
│ └── index.ts
│ └── yarn.lock
├── gulpfile.js
├── jest.config.js
├── package.json
├── scripts
├── gulpfile.ts
└── tasks
│ ├── constants.ts
│ ├── link-examples.ts
│ ├── unlink-examples.ts
│ └── upgrade-deps.ts
├── src
├── blocks.ts
├── builder.ts
├── core.ts
├── definitions
│ ├── _types.ts
│ ├── args.ts
│ ├── decorateType.ts
│ ├── definitionBlocks.ts
│ ├── directive.ts
│ ├── enumType.ts
│ ├── extendInputType.ts
│ ├── extendType.ts
│ ├── inputObjectType.ts
│ ├── interfaceType.ts
│ ├── list.ts
│ ├── mutationField.ts
│ ├── mutationType.ts
│ ├── nexusMeta.ts
│ ├── nonNull.ts
│ ├── nullable.ts
│ ├── objectType.ts
│ ├── queryField.ts
│ ├── queryType.ts
│ ├── scalarType.ts
│ ├── subscriptionField.ts
│ ├── subscriptionType.ts
│ ├── unionType.ts
│ └── wrapping.ts
├── dynamicMethod.ts
├── dynamicProperty.ts
├── extensions.ts
├── graphqlInternal.ts
├── index.ts
├── lang.ts
├── makeSchema.ts
├── messages.ts
├── node.ts
├── plugin.ts
├── plugins
│ ├── connectionPlugin.ts
│ ├── declarativeWrappingPlugin.ts
│ ├── fieldAuthorizePlugin.ts
│ ├── index.ts
│ ├── nullabilityGuardPlugin.ts
│ └── queryComplexityPlugin.ts
├── printSchemaWithDirectives.ts
├── rebuildType.ts
├── sdlConverter.ts
├── typeHelpersInternal.ts
├── typegenAbstractTypes.ts
├── typegenAutoConfig.ts
├── typegenFormatPrettier.ts
├── typegenMetadata.ts
├── typegenPrinter.ts
├── typegenTypeHelpers.spec.types.ts
├── typegenTypeHelpers.ts
├── typegenUtils.ts
└── utils.ts
├── tests
├── __helpers
│ ├── helpers.ts
│ ├── index.ts
│ ├── sequencer.js
│ └── testApp.ts
├── __snapshots__
│ ├── args.spec.ts.snap
│ ├── backingTypes.spec.ts.snap
│ ├── builder.spec.ts.snap
│ ├── definitions.spec.ts.snap
│ ├── inputObjectType.spec.ts.snap
│ ├── interfaceType.spec.ts.snap
│ ├── makeSchema.spec.ts.snap
│ ├── nonNullDefaults.spec.ts.snap
│ ├── null-list.spec.ts.snap
│ ├── objectType.spec.ts.snap
│ ├── plugin.spec.ts.snap
│ ├── plugins.spec.ts.snap
│ ├── scalarType.spec.ts.snap
│ ├── sdlConverter.spec.ts.snap
│ ├── typegenPrinter.spec.ts.snap
│ ├── typegenPrinterGlobals.spec.ts.snap
│ ├── unionType.spec.ts.snap
│ └── unknownType.spec.ts.snap
├── _fixtures.ts
├── _sdl.ts
├── _setup.ts
├── _types.ts
├── abstractChecks.spec.ts
├── args.spec.ts
├── backingTypes.spec.ts
├── builder.spec.ts
├── definitions.spec.ts
├── definitions
│ ├── __snapshots__
│ │ └── nexusMeta.spec.ts.snap
│ └── nexusMeta.spec.ts
├── dynamicMethods.spec.ts
├── esm
│ ├── esm-entry.js
│ └── standalone.spec.ts
├── gh-issues
│ └── 361-interfaceType-implements.spec.ts
├── inputObjectType.spec.ts
├── integrations
│ ├── abstractTypes
│ │ ├── allStrategiesOptionalWhenTypeNameEnabled
│ │ │ ├── __app.ts
│ │ │ ├── __schema.graphql
│ │ │ ├── __typegen.ts
│ │ │ ├── case.spec.ts
│ │ │ └── tsconfig.json
│ │ ├── isTypeOfsImplemented
│ │ │ ├── __app.ts
│ │ │ ├── __schema.graphql
│ │ │ ├── __typegen.ts
│ │ │ ├── case.spec.ts
│ │ │ └── tsconfig.json
│ │ ├── missingIsTypeOf
│ │ │ ├── __app.ts
│ │ │ ├── __schema.graphql
│ │ │ ├── __typegen.ts
│ │ │ ├── case.spec.ts
│ │ │ └── tsconfig.json
│ │ ├── missingResolveType
│ │ │ ├── __app.ts
│ │ │ ├── __schema.graphql
│ │ │ ├── __typegen.ts
│ │ │ ├── case.spec.ts
│ │ │ └── tsconfig.json
│ │ ├── missingResolveTypeOrIsTypeOf
│ │ │ ├── __app.ts
│ │ │ ├── __schema.graphql
│ │ │ ├── __typegen.ts
│ │ │ ├── case.spec.ts
│ │ │ └── tsconfig.json
│ │ ├── missingTypenameDiscriminant
│ │ │ ├── __app.ts
│ │ │ ├── __schema.graphql
│ │ │ ├── __typegen.ts
│ │ │ ├── case.spec.ts
│ │ │ └── tsconfig.json
│ │ └── resolveTypeImplemented
│ │ │ ├── __app.ts
│ │ │ ├── __schema.graphql
│ │ │ ├── __typegen.ts
│ │ │ ├── case.spec.ts
│ │ │ └── tsconfig.json
│ ├── declarativeWrappingPlugin
│ │ ├── __app.ts
│ │ ├── __schema.graphql
│ │ ├── __typegen.ts
│ │ ├── case.spec.ts
│ │ └── tsconfig.json
│ ├── kitchenSink
│ │ ├── __app.ts
│ │ ├── __schema.graphql
│ │ ├── __typegen.ts
│ │ ├── case.spec.ts
│ │ └── tsconfig.json
│ └── unionTooComplexToRepresent
│ │ ├── __app.ts
│ │ ├── __schema.graphql
│ │ ├── __typegen.ts
│ │ ├── case.spec.ts
│ │ └── tsconfig.json
├── interfaceType.spec.ts
├── makeSchema.spec.ts
├── modify.spec.ts
├── mutationField.spec.ts
├── nonNullDefaults.spec.ts
├── null-list.spec.ts
├── objectType.spec.ts
├── plugin.spec.ts
├── plugins.spec.ts
├── plugins
│ ├── __snapshots__
│ │ ├── connectionPlugin.spec.ts.snap
│ │ ├── declarativeWrappingPlugin.spec.ts.snap
│ │ ├── fieldAuthorizePlugin.spec.ts.snap
│ │ └── queryComplexityPlugin.spec.ts.snap
│ ├── connectionPlugin.spec.ts
│ ├── declarativeWrappingPlugin.spec.ts
│ ├── fieldAuthorizePlugin.spec.ts
│ ├── nullabilityGuardPlugin.spec.ts
│ └── queryComplexityPlugin.spec.ts
├── queryField.spec.ts
├── resolveTypes.spec.ts
├── scalarType.spec.ts
├── sdlConverter.spec.ts
├── subscriptionField.spec.ts
├── subscriptionType.spec.ts
├── typegen-globals
│ ├── global-types-useReadonlyArrayForInputs.gen.ts
│ ├── global-types.gen.ts
│ ├── schema.gen.graphql
│ ├── types-useReadonlyArrayForInputs.gen.ts
│ └── types.gen.ts
├── typegen
│ ├── schema.gen.graphql
│ └── types.gen.ts
├── typegenPrinter.spec.ts
├── typegenPrinterGlobals.spec.ts
├── unionType.spec.ts
├── unknownType.spec.ts
├── utils.spec.ts
├── v15
│ ├── __snapshots__
│ │ ├── connectionPlugin-v15.spec.ts.snap
│ │ ├── interfaceType-v15.spec.ts.snap
│ │ ├── modify-v15.spec.ts.snap
│ │ └── sdlConverter.spec.ts.snap
│ ├── connectionPlugin-v15.spec.ts
│ ├── interfaceType-v15.spec.ts
│ ├── modify-v15.spec.ts
│ └── sdlConverter.spec.ts
└── wrapping.spec.ts
├── tmp
├── _redirects
└── index.html
├── tsconfig.build.json
├── tsconfig.cjs.json
├── tsconfig.esm.json
├── tsconfig.json
├── tsconfig.spec.types.json
├── tslint.json
└── yarn.lock
/.github/renovate.json:
--------------------------------------------------------------------------------
1 | {
2 | "enabled": false
3 | }
4 |
--------------------------------------------------------------------------------
/.github/semantic.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/.github/semantic.yml
--------------------------------------------------------------------------------
/.github/workflows/pr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/.github/workflows/pr.yml
--------------------------------------------------------------------------------
/.github/workflows/trunk.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/.github/workflows/trunk.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/.gitignore
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/.prettierrc
--------------------------------------------------------------------------------
/.vscode/launch.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/.vscode/launch.json
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/.vscode/settings.json
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/CHANGELOG.md
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/LICENSE.md
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/README.md
--------------------------------------------------------------------------------
/codecov.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/codecov.yml
--------------------------------------------------------------------------------
/docs/.env.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/.env.example
--------------------------------------------------------------------------------
/docs/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/.gitignore
--------------------------------------------------------------------------------
/docs/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/.prettierignore
--------------------------------------------------------------------------------
/docs/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/.prettierrc
--------------------------------------------------------------------------------
/docs/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/LICENSE
--------------------------------------------------------------------------------
/docs/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/README.md
--------------------------------------------------------------------------------
/docs/config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/config.js
--------------------------------------------------------------------------------
/docs/content/010-getting-started/03-tutorial/01-chapter-0-introduction.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/010-getting-started/03-tutorial/01-chapter-0-introduction.mdx
--------------------------------------------------------------------------------
/docs/content/010-getting-started/03-tutorial/02-chapter-1-setup-and-first-query.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/010-getting-started/03-tutorial/02-chapter-1-setup-and-first-query.mdx
--------------------------------------------------------------------------------
/docs/content/010-getting-started/03-tutorial/03-chapter-2-writing-your-first-schema.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/010-getting-started/03-tutorial/03-chapter-2-writing-your-first-schema.mdx
--------------------------------------------------------------------------------
/docs/content/010-getting-started/03-tutorial/04-chapter-3-adding-mutations-to-your-api.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/010-getting-started/03-tutorial/04-chapter-3-adding-mutations-to-your-api.mdx
--------------------------------------------------------------------------------
/docs/content/010-getting-started/03-tutorial/05-chapter-4-testing-your-api.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/010-getting-started/03-tutorial/05-chapter-4-testing-your-api.mdx
--------------------------------------------------------------------------------
/docs/content/010-getting-started/03-tutorial/06-chapter-5-persisting-data-via-prisma.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/010-getting-started/03-tutorial/06-chapter-5-persisting-data-via-prisma.mdx
--------------------------------------------------------------------------------
/docs/content/010-getting-started/03-tutorial/07-chapter-6-testing-with-prisma.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/010-getting-started/03-tutorial/07-chapter-6-testing-with-prisma.mdx
--------------------------------------------------------------------------------
/docs/content/010-getting-started/03-tutorial/index.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/010-getting-started/03-tutorial/index.mdx
--------------------------------------------------------------------------------
/docs/content/010-getting-started/04-why-nexus.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/010-getting-started/04-why-nexus.mdx
--------------------------------------------------------------------------------
/docs/content/010-getting-started/05-examples.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/010-getting-started/05-examples.mdx
--------------------------------------------------------------------------------
/docs/content/010-getting-started/index.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | title: Getting started
3 | ---
4 |
5 | ## Overview
6 |
7 |
8 |
--------------------------------------------------------------------------------
/docs/content/014-guides/020-schema.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/014-guides/020-schema.mdx
--------------------------------------------------------------------------------
/docs/content/014-guides/021-nullability.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/014-guides/021-nullability.mdx
--------------------------------------------------------------------------------
/docs/content/014-guides/022-source-types.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/014-guides/022-source-types.mdx
--------------------------------------------------------------------------------
/docs/content/014-guides/025-abstract-types.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/014-guides/025-abstract-types.mdx
--------------------------------------------------------------------------------
/docs/content/014-guides/030-library-authors.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/014-guides/030-library-authors.mdx
--------------------------------------------------------------------------------
/docs/content/014-guides/040-best-practices.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/014-guides/040-best-practices.mdx
--------------------------------------------------------------------------------
/docs/content/014-guides/050-generated-artifacts.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/014-guides/050-generated-artifacts.mdx
--------------------------------------------------------------------------------
/docs/content/014-guides/index.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | title: Guides
3 | toc: false
4 | ---
5 |
6 | ## Overview
7 |
8 |
9 |
--------------------------------------------------------------------------------
/docs/content/015-api/009-introduction.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/009-introduction.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/010-object-type.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/010-object-type.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/011-subscription-type.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/011-subscription-type.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/020-union-type.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/020-union-type.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/030-scalar-type.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/030-scalar-type.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/040-interface-type.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/040-interface-type.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/050-enum-type.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/050-enum-type.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/050-input-object-type.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/050-input-object-type.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/060-args.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/060-args.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/061-list-nonNull.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/061-list-nonNull.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/070-make-schema.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/070-make-schema.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/080-extend-type.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/080-extend-type.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/090-mutation-field.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/090-mutation-field.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/100-query-field.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/100-query-field.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/101-subscription-field.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/101-subscription-field.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/110-plugins.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/110-plugins.mdx
--------------------------------------------------------------------------------
/docs/content/015-api/index.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/015-api/index.mdx
--------------------------------------------------------------------------------
/docs/content/030-plugins/01-connection.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/030-plugins/01-connection.mdx
--------------------------------------------------------------------------------
/docs/content/030-plugins/02-declarativeWrapping.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/030-plugins/02-declarativeWrapping.mdx
--------------------------------------------------------------------------------
/docs/content/030-plugins/03-field-authorize.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/030-plugins/03-field-authorize.mdx
--------------------------------------------------------------------------------
/docs/content/030-plugins/04-query-complexity.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/030-plugins/04-query-complexity.mdx
--------------------------------------------------------------------------------
/docs/content/030-plugins/05-nullability-guard.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/030-plugins/05-nullability-guard.mdx
--------------------------------------------------------------------------------
/docs/content/030-plugins/050-prisma/010-overview.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/030-plugins/050-prisma/010-overview.mdx
--------------------------------------------------------------------------------
/docs/content/030-plugins/050-prisma/030-api.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/030-plugins/050-prisma/030-api.mdx
--------------------------------------------------------------------------------
/docs/content/030-plugins/050-prisma/040-removing-the-nexus-plugin-prisma.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/030-plugins/050-prisma/040-removing-the-nexus-plugin-prisma.mdx
--------------------------------------------------------------------------------
/docs/content/030-plugins/050-prisma/index.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/030-plugins/050-prisma/index.mdx
--------------------------------------------------------------------------------
/docs/content/030-plugins/index.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | title: Plugins
3 | toc: false
4 | ---
5 |
6 | ## Overview
7 |
8 |
9 |
--------------------------------------------------------------------------------
/docs/content/040-adoption-guides/010-prisma-users.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/040-adoption-guides/010-prisma-users.mdx
--------------------------------------------------------------------------------
/docs/content/040-adoption-guides/011-nextjs-users.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/040-adoption-guides/011-nextjs-users.mdx
--------------------------------------------------------------------------------
/docs/content/040-adoption-guides/020-nexus-framework-users.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/040-adoption-guides/020-nexus-framework-users.mdx
--------------------------------------------------------------------------------
/docs/content/040-adoption-guides/030-neuxs-framework-prisma-users.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/040-adoption-guides/030-neuxs-framework-prisma-users.mdx
--------------------------------------------------------------------------------
/docs/content/040-adoption-guides/index.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | title: Adoption Guides
3 | ---
4 |
--------------------------------------------------------------------------------
/docs/content/099-hack.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/099-hack.mdx
--------------------------------------------------------------------------------
/docs/content/index.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/content/index.mdx
--------------------------------------------------------------------------------
/docs/functions/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/functions/index.js
--------------------------------------------------------------------------------
/docs/gatsby-browser.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/gatsby-browser.js
--------------------------------------------------------------------------------
/docs/gatsby-config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/gatsby-config.js
--------------------------------------------------------------------------------
/docs/gatsby-node.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/gatsby-node.js
--------------------------------------------------------------------------------
/docs/gatsby-ssr.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/gatsby-ssr.js
--------------------------------------------------------------------------------
/docs/images.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/images.d.ts
--------------------------------------------------------------------------------
/docs/jest.setup.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/jest.setup.js
--------------------------------------------------------------------------------
/docs/netlify.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/netlify.toml
--------------------------------------------------------------------------------
/docs/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/package.json
--------------------------------------------------------------------------------
/docs/plugins/gatsby-remark-check-links-numberless/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/plugins/gatsby-remark-check-links-numberless/index.js
--------------------------------------------------------------------------------
/docs/plugins/gatsby-remark-check-links-numberless/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/plugins/gatsby-remark-check-links-numberless/package.json
--------------------------------------------------------------------------------
/docs/plugins/gatsby-remark-to-absoluteurl/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/plugins/gatsby-remark-to-absoluteurl/index.js
--------------------------------------------------------------------------------
/docs/plugins/gatsby-remark-to-absoluteurl/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/plugins/gatsby-remark-to-absoluteurl/package.json
--------------------------------------------------------------------------------
/docs/prisma/migrations/dev/watch-20200414152651/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/prisma/migrations/dev/watch-20200414152651/README.md
--------------------------------------------------------------------------------
/docs/prisma/migrations/dev/watch-20200414152651/schema.prisma:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/prisma/migrations/dev/watch-20200414152651/schema.prisma
--------------------------------------------------------------------------------
/docs/prisma/migrations/dev/watch-20200414152651/steps.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/prisma/migrations/dev/watch-20200414152651/steps.json
--------------------------------------------------------------------------------
/docs/prisma/schema.prisma:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/prisma/schema.prisma
--------------------------------------------------------------------------------
/docs/schema.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/schema.sql
--------------------------------------------------------------------------------
/docs/src/components/customMdx/button.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/button.tsx
--------------------------------------------------------------------------------
/docs/src/components/customMdx/code.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/code.tsx
--------------------------------------------------------------------------------
/docs/src/components/customMdx/codeBlock.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/codeBlock.tsx
--------------------------------------------------------------------------------
/docs/src/components/customMdx/codeWithResult.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/codeWithResult.tsx
--------------------------------------------------------------------------------
/docs/src/components/customMdx/collapsible.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/collapsible.tsx
--------------------------------------------------------------------------------
/docs/src/components/customMdx/copy.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/copy.tsx
--------------------------------------------------------------------------------
/docs/src/components/customMdx/fileWithIcon.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/fileWithIcon.tsx
--------------------------------------------------------------------------------
/docs/src/components/customMdx/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/index.tsx
--------------------------------------------------------------------------------
/docs/src/components/customMdx/parallelBlocks.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/parallelBlocks.tsx
--------------------------------------------------------------------------------
/docs/src/components/customMdx/prism/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/prism/index.css
--------------------------------------------------------------------------------
/docs/src/components/customMdx/prism/prism-prisma.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/prism/prism-prisma.js
--------------------------------------------------------------------------------
/docs/src/components/customMdx/subSections.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/subSections.tsx
--------------------------------------------------------------------------------
/docs/src/components/customMdx/tabbedContent.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/tabbedContent.tsx
--------------------------------------------------------------------------------
/docs/src/components/customMdx/table.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/table.tsx
--------------------------------------------------------------------------------
/docs/src/components/customMdx/topBlock.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/customMdx/topBlock.tsx
--------------------------------------------------------------------------------
/docs/src/components/footer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/footer.tsx
--------------------------------------------------------------------------------
/docs/src/components/header.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/header.tsx
--------------------------------------------------------------------------------
/docs/src/components/image.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/image.tsx
--------------------------------------------------------------------------------
/docs/src/components/layout.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/layout.css
--------------------------------------------------------------------------------
/docs/src/components/layout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/layout.tsx
--------------------------------------------------------------------------------
/docs/src/components/link.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/link.tsx
--------------------------------------------------------------------------------
/docs/src/components/newsletter/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/newsletter/index.tsx
--------------------------------------------------------------------------------
/docs/src/components/newsletter/mailChimp.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/newsletter/mailChimp.ts
--------------------------------------------------------------------------------
/docs/src/components/newsletter/valid.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/newsletter/valid.ts
--------------------------------------------------------------------------------
/docs/src/components/pageBottom.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/pageBottom.tsx
--------------------------------------------------------------------------------
/docs/src/components/parentTitleComp.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/parentTitleComp.tsx
--------------------------------------------------------------------------------
/docs/src/components/search/hitComps.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/search/hitComps.tsx
--------------------------------------------------------------------------------
/docs/src/components/search/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/search/index.tsx
--------------------------------------------------------------------------------
/docs/src/components/search/input.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/search/input.tsx
--------------------------------------------------------------------------------
/docs/src/components/search/overlay.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/search/overlay.tsx
--------------------------------------------------------------------------------
/docs/src/components/seo.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/seo.tsx
--------------------------------------------------------------------------------
/docs/src/components/sidebar/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/sidebar/index.tsx
--------------------------------------------------------------------------------
/docs/src/components/sidebar/tree.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/sidebar/tree.tsx
--------------------------------------------------------------------------------
/docs/src/components/sidebar/treeNode.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/sidebar/treeNode.tsx
--------------------------------------------------------------------------------
/docs/src/components/toc.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/toc.tsx
--------------------------------------------------------------------------------
/docs/src/components/topSection.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/components/topSection.tsx
--------------------------------------------------------------------------------
/docs/src/hooks/useAllArticlesQuery.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/hooks/useAllArticlesQuery.ts
--------------------------------------------------------------------------------
/docs/src/hooks/useLayoutQuery.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/hooks/useLayoutQuery.ts
--------------------------------------------------------------------------------
/docs/src/html.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/html.js
--------------------------------------------------------------------------------
/docs/src/icons/ArrowDown.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/ArrowDown.tsx
--------------------------------------------------------------------------------
/docs/src/icons/ArrowEmail.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/ArrowEmail.tsx
--------------------------------------------------------------------------------
/docs/src/icons/ArrowRight.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/ArrowRight.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Clear.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Clear.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Code.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Code.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Copy.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Copy.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Database.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Database.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Display.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Display.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Down.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Down.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Email.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Email.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Facebook.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Facebook.tsx
--------------------------------------------------------------------------------
/docs/src/icons/File.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/File.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Git.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Git.tsx
--------------------------------------------------------------------------------
/docs/src/icons/GitGrey.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/GitGrey.tsx
--------------------------------------------------------------------------------
/docs/src/icons/HashLink.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/HashLink.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Logo.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Logo.tsx
--------------------------------------------------------------------------------
/docs/src/icons/PrismaLogoGrey.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/PrismaLogoGrey.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Search.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Search.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Slack.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Slack.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Twitter.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Twitter.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Up.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Up.tsx
--------------------------------------------------------------------------------
/docs/src/icons/Youtube.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/Youtube.tsx
--------------------------------------------------------------------------------
/docs/src/icons/technologies/Flow.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/technologies/Flow.tsx
--------------------------------------------------------------------------------
/docs/src/icons/technologies/Go.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/technologies/Go.tsx
--------------------------------------------------------------------------------
/docs/src/icons/technologies/JS.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/technologies/JS.tsx
--------------------------------------------------------------------------------
/docs/src/icons/technologies/MongoDB.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/technologies/MongoDB.tsx
--------------------------------------------------------------------------------
/docs/src/icons/technologies/MySQL.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/technologies/MySQL.tsx
--------------------------------------------------------------------------------
/docs/src/icons/technologies/NodeJS.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/technologies/NodeJS.tsx
--------------------------------------------------------------------------------
/docs/src/icons/technologies/PostgreSQL.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/technologies/PostgreSQL.tsx
--------------------------------------------------------------------------------
/docs/src/icons/technologies/SQLite.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/technologies/SQLite.tsx
--------------------------------------------------------------------------------
/docs/src/icons/technologies/Typescript.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/icons/technologies/Typescript.tsx
--------------------------------------------------------------------------------
/docs/src/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/images/favicon.png
--------------------------------------------------------------------------------
/docs/src/images/list-dot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/images/list-dot.png
--------------------------------------------------------------------------------
/docs/src/interfaces/AllArticles.interface.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/interfaces/AllArticles.interface.ts
--------------------------------------------------------------------------------
/docs/src/interfaces/Article.interface.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/interfaces/Article.interface.ts
--------------------------------------------------------------------------------
/docs/src/interfaces/EdgeNode.interface.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/interfaces/EdgeNode.interface.ts
--------------------------------------------------------------------------------
/docs/src/interfaces/Layout.interface.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/interfaces/Layout.interface.ts
--------------------------------------------------------------------------------
/docs/src/layouts/articleLayout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/layouts/articleLayout.tsx
--------------------------------------------------------------------------------
/docs/src/pages/404.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/pages/404.tsx
--------------------------------------------------------------------------------
/docs/src/utils/algolia.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/utils/algolia.js
--------------------------------------------------------------------------------
/docs/src/utils/goToNavItem.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/utils/goToNavItem.js
--------------------------------------------------------------------------------
/docs/src/utils/parentTitle.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/utils/parentTitle.ts
--------------------------------------------------------------------------------
/docs/src/utils/stats.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/utils/stats.js
--------------------------------------------------------------------------------
/docs/src/utils/stickWhenNeeded.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/utils/stickWhenNeeded.ts
--------------------------------------------------------------------------------
/docs/src/utils/stringify.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/utils/stringify.ts
--------------------------------------------------------------------------------
/docs/src/utils/treeData.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/utils/treeData.ts
--------------------------------------------------------------------------------
/docs/src/utils/urlGenerator.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/src/utils/urlGenerator.ts
--------------------------------------------------------------------------------
/docs/static/assets/next-nexus-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/static/assets/next-nexus-1.png
--------------------------------------------------------------------------------
/docs/static/assets/next-nexus-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/static/assets/next-nexus-2.png
--------------------------------------------------------------------------------
/docs/static/assets/next-nexus-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/static/assets/next-nexus-3.png
--------------------------------------------------------------------------------
/docs/static/assets/source-type-diagram-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/static/assets/source-type-diagram-1.png
--------------------------------------------------------------------------------
/docs/static/assets/source-type-diagram-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/static/assets/source-type-diagram-2.png
--------------------------------------------------------------------------------
/docs/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/tsconfig.json
--------------------------------------------------------------------------------
/docs/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/tslint.json
--------------------------------------------------------------------------------
/docs/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/docs/yarn.lock
--------------------------------------------------------------------------------
/examples/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/README.md
--------------------------------------------------------------------------------
/examples/apollo-fullstack/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/README.md
--------------------------------------------------------------------------------
/examples/apollo-fullstack/fullstack-schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/fullstack-schema.graphql
--------------------------------------------------------------------------------
/examples/apollo-fullstack/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/package.json
--------------------------------------------------------------------------------
/examples/apollo-fullstack/src/context.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/src/context.ts
--------------------------------------------------------------------------------
/examples/apollo-fullstack/src/fullstack-typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/src/fullstack-typegen.ts
--------------------------------------------------------------------------------
/examples/apollo-fullstack/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/src/index.ts
--------------------------------------------------------------------------------
/examples/apollo-fullstack/src/schema/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/src/schema/index.ts
--------------------------------------------------------------------------------
/examples/apollo-fullstack/src/schema/launch.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/src/schema/launch.ts
--------------------------------------------------------------------------------
/examples/apollo-fullstack/src/schema/mission.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/src/schema/mission.ts
--------------------------------------------------------------------------------
/examples/apollo-fullstack/src/schema/mutation.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/src/schema/mutation.ts
--------------------------------------------------------------------------------
/examples/apollo-fullstack/src/schema/query.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/src/schema/query.ts
--------------------------------------------------------------------------------
/examples/apollo-fullstack/src/schema/rocket.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/src/schema/rocket.ts
--------------------------------------------------------------------------------
/examples/apollo-fullstack/src/schema/user.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/src/schema/user.ts
--------------------------------------------------------------------------------
/examples/apollo-fullstack/src/typeDefs.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/src/typeDefs.ts
--------------------------------------------------------------------------------
/examples/apollo-fullstack/store.sqlite:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/store.sqlite
--------------------------------------------------------------------------------
/examples/apollo-fullstack/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/tsconfig.json
--------------------------------------------------------------------------------
/examples/apollo-fullstack/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/apollo-fullstack/yarn.lock
--------------------------------------------------------------------------------
/examples/ghost/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/README.md
--------------------------------------------------------------------------------
/examples/ghost/config.development.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/config.development.json
--------------------------------------------------------------------------------
/examples/ghost/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/package.json
--------------------------------------------------------------------------------
/examples/ghost/scripts/dumpTables.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/scripts/dumpTables.ts
--------------------------------------------------------------------------------
/examples/ghost/src/_ts/ghost.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/_ts/ghost.d.ts
--------------------------------------------------------------------------------
/examples/ghost/src/data-sources/AuthSource.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/data-sources/AuthSource.ts
--------------------------------------------------------------------------------
/examples/ghost/src/data-sources/Context.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/data-sources/Context.ts
--------------------------------------------------------------------------------
/examples/ghost/src/data-sources/PostSource.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/data-sources/PostSource.ts
--------------------------------------------------------------------------------
/examples/ghost/src/data-sources/UserSource.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/data-sources/UserSource.ts
--------------------------------------------------------------------------------
/examples/ghost/src/generated/ghost-db-tables.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/generated/ghost-db-tables.ts
--------------------------------------------------------------------------------
/examples/ghost/src/generated/ghost-db-types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/generated/ghost-db-types.ts
--------------------------------------------------------------------------------
/examples/ghost/src/generated/ghost-nexus.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/generated/ghost-nexus.ts
--------------------------------------------------------------------------------
/examples/ghost/src/generated/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/generated/index.ts
--------------------------------------------------------------------------------
/examples/ghost/src/ghost-schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/ghost-schema.graphql
--------------------------------------------------------------------------------
/examples/ghost/src/ghost-schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/ghost-schema.ts
--------------------------------------------------------------------------------
/examples/ghost/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/index.ts
--------------------------------------------------------------------------------
/examples/ghost/src/schema/Post.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/schema/Post.ts
--------------------------------------------------------------------------------
/examples/ghost/src/schema/Query.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/schema/Query.ts
--------------------------------------------------------------------------------
/examples/ghost/src/schema/User.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/schema/User.ts
--------------------------------------------------------------------------------
/examples/ghost/src/schema/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/schema/index.ts
--------------------------------------------------------------------------------
/examples/ghost/src/utils/knexInstance.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/utils/knexInstance.ts
--------------------------------------------------------------------------------
/examples/ghost/src/utils/loaderUtils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/src/utils/loaderUtils.ts
--------------------------------------------------------------------------------
/examples/ghost/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/tsconfig.json
--------------------------------------------------------------------------------
/examples/ghost/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ghost/yarn.lock
--------------------------------------------------------------------------------
/examples/githunt-api/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/githunt-api/README.md
--------------------------------------------------------------------------------
/examples/githunt-api/githunt-api-schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/githunt-api/githunt-api-schema.graphql
--------------------------------------------------------------------------------
/examples/githunt-api/jsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/githunt-api/jsconfig.json
--------------------------------------------------------------------------------
/examples/githunt-api/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/githunt-api/package.json
--------------------------------------------------------------------------------
/examples/githunt-api/src/githunt-typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/githunt-api/src/githunt-typegen.ts
--------------------------------------------------------------------------------
/examples/githunt-api/src/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/githunt-api/src/index.js
--------------------------------------------------------------------------------
/examples/githunt-api/src/schema.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/githunt-api/src/schema.js
--------------------------------------------------------------------------------
/examples/githunt-api/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/githunt-api/yarn.lock
--------------------------------------------------------------------------------
/examples/kitchen-sink/README.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/kitchen-sink/kitchen-sink-schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/kitchen-sink/kitchen-sink-schema.graphql
--------------------------------------------------------------------------------
/examples/kitchen-sink/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/kitchen-sink/package.json
--------------------------------------------------------------------------------
/examples/kitchen-sink/src/example-plugins.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/kitchen-sink/src/example-plugins.ts
--------------------------------------------------------------------------------
/examples/kitchen-sink/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/kitchen-sink/src/index.ts
--------------------------------------------------------------------------------
/examples/kitchen-sink/src/kitchen-sink-definitions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/kitchen-sink/src/kitchen-sink-definitions.ts
--------------------------------------------------------------------------------
/examples/kitchen-sink/src/kitchen-sink-globals.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/kitchen-sink/src/kitchen-sink-globals.gen.ts
--------------------------------------------------------------------------------
/examples/kitchen-sink/src/kitchen-sink.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/kitchen-sink/src/kitchen-sink.gen.ts
--------------------------------------------------------------------------------
/examples/kitchen-sink/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/kitchen-sink/tsconfig.json
--------------------------------------------------------------------------------
/examples/kitchen-sink/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/kitchen-sink/yarn.lock
--------------------------------------------------------------------------------
/examples/star-wars/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/README.md
--------------------------------------------------------------------------------
/examples/star-wars/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/package.json
--------------------------------------------------------------------------------
/examples/star-wars/src/data.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/src/data.ts
--------------------------------------------------------------------------------
/examples/star-wars/src/graphql/character.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/src/graphql/character.ts
--------------------------------------------------------------------------------
/examples/star-wars/src/graphql/droid.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/src/graphql/droid.ts
--------------------------------------------------------------------------------
/examples/star-wars/src/graphql/episode.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/src/graphql/episode.ts
--------------------------------------------------------------------------------
/examples/star-wars/src/graphql/human.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/src/graphql/human.ts
--------------------------------------------------------------------------------
/examples/star-wars/src/graphql/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/src/graphql/index.ts
--------------------------------------------------------------------------------
/examples/star-wars/src/graphql/query.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/src/graphql/query.ts
--------------------------------------------------------------------------------
/examples/star-wars/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/src/index.ts
--------------------------------------------------------------------------------
/examples/star-wars/src/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/src/schema.ts
--------------------------------------------------------------------------------
/examples/star-wars/src/star-wars-typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/src/star-wars-typegen.ts
--------------------------------------------------------------------------------
/examples/star-wars/src/types/backingTypes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/src/types/backingTypes.ts
--------------------------------------------------------------------------------
/examples/star-wars/src/types/context.ts:
--------------------------------------------------------------------------------
1 | export interface ContextType {}
2 |
--------------------------------------------------------------------------------
/examples/star-wars/star-wars-schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/star-wars-schema.graphql
--------------------------------------------------------------------------------
/examples/star-wars/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/tsconfig.json
--------------------------------------------------------------------------------
/examples/star-wars/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/star-wars/yarn.lock
--------------------------------------------------------------------------------
/examples/ts-ast-reader/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/README.md
--------------------------------------------------------------------------------
/examples/ts-ast-reader/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/package.json
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/index.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/schema.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/ts-ast-reader-typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/ts-ast-reader-typegen.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/types/context.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/types/context.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/types/declarations.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/types/declarations.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/types/enums.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/types/enums.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/types/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/types/index.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/types/interfaces.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/types/interfaces.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/types/jsdoc.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/types/jsdoc.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/types/mixins.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/types/mixins.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/types/objects.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/types/objects.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/types/typeNodes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/types/typeNodes.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/types/unions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/types/unions.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/src/types/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/src/types/utils.ts
--------------------------------------------------------------------------------
/examples/ts-ast-reader/test-query.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/test-query.graphql
--------------------------------------------------------------------------------
/examples/ts-ast-reader/ts-ast-reader-schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/ts-ast-reader-schema.graphql
--------------------------------------------------------------------------------
/examples/ts-ast-reader/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/tsconfig.json
--------------------------------------------------------------------------------
/examples/ts-ast-reader/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/ts-ast-reader/yarn.lock
--------------------------------------------------------------------------------
/examples/with-prisma/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/with-prisma/.gitignore
--------------------------------------------------------------------------------
/examples/with-prisma/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/with-prisma/README.md
--------------------------------------------------------------------------------
/examples/with-prisma/api.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/with-prisma/api.graphql
--------------------------------------------------------------------------------
/examples/with-prisma/api.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/with-prisma/api.ts
--------------------------------------------------------------------------------
/examples/with-prisma/context.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/with-prisma/context.ts
--------------------------------------------------------------------------------
/examples/with-prisma/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/with-prisma/package.json
--------------------------------------------------------------------------------
/examples/with-prisma/prisma/schema.prisma:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/with-prisma/prisma/schema.prisma
--------------------------------------------------------------------------------
/examples/with-prisma/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/with-prisma/tsconfig.json
--------------------------------------------------------------------------------
/examples/with-prisma/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/with-prisma/yarn.lock
--------------------------------------------------------------------------------
/examples/zeit-typescript/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/zeit-typescript/README.md
--------------------------------------------------------------------------------
/examples/zeit-typescript/api/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/zeit-typescript/api/index.ts
--------------------------------------------------------------------------------
/examples/zeit-typescript/now.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/zeit-typescript/now.json
--------------------------------------------------------------------------------
/examples/zeit-typescript/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/zeit-typescript/package.json
--------------------------------------------------------------------------------
/examples/zeit-typescript/schema/User.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/zeit-typescript/schema/User.ts
--------------------------------------------------------------------------------
/examples/zeit-typescript/schema/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/zeit-typescript/schema/index.ts
--------------------------------------------------------------------------------
/examples/zeit-typescript/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/examples/zeit-typescript/yarn.lock
--------------------------------------------------------------------------------
/gulpfile.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/gulpfile.js
--------------------------------------------------------------------------------
/jest.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/jest.config.js
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/package.json
--------------------------------------------------------------------------------
/scripts/gulpfile.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/scripts/gulpfile.ts
--------------------------------------------------------------------------------
/scripts/tasks/constants.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/scripts/tasks/constants.ts
--------------------------------------------------------------------------------
/scripts/tasks/link-examples.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/scripts/tasks/link-examples.ts
--------------------------------------------------------------------------------
/scripts/tasks/unlink-examples.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/scripts/tasks/unlink-examples.ts
--------------------------------------------------------------------------------
/scripts/tasks/upgrade-deps.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/scripts/tasks/upgrade-deps.ts
--------------------------------------------------------------------------------
/src/blocks.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/blocks.ts
--------------------------------------------------------------------------------
/src/builder.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/builder.ts
--------------------------------------------------------------------------------
/src/core.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/core.ts
--------------------------------------------------------------------------------
/src/definitions/_types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/_types.ts
--------------------------------------------------------------------------------
/src/definitions/args.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/args.ts
--------------------------------------------------------------------------------
/src/definitions/decorateType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/decorateType.ts
--------------------------------------------------------------------------------
/src/definitions/definitionBlocks.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/definitionBlocks.ts
--------------------------------------------------------------------------------
/src/definitions/directive.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/directive.ts
--------------------------------------------------------------------------------
/src/definitions/enumType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/enumType.ts
--------------------------------------------------------------------------------
/src/definitions/extendInputType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/extendInputType.ts
--------------------------------------------------------------------------------
/src/definitions/extendType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/extendType.ts
--------------------------------------------------------------------------------
/src/definitions/inputObjectType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/inputObjectType.ts
--------------------------------------------------------------------------------
/src/definitions/interfaceType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/interfaceType.ts
--------------------------------------------------------------------------------
/src/definitions/list.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/list.ts
--------------------------------------------------------------------------------
/src/definitions/mutationField.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/mutationField.ts
--------------------------------------------------------------------------------
/src/definitions/mutationType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/mutationType.ts
--------------------------------------------------------------------------------
/src/definitions/nexusMeta.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/nexusMeta.ts
--------------------------------------------------------------------------------
/src/definitions/nonNull.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/nonNull.ts
--------------------------------------------------------------------------------
/src/definitions/nullable.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/nullable.ts
--------------------------------------------------------------------------------
/src/definitions/objectType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/objectType.ts
--------------------------------------------------------------------------------
/src/definitions/queryField.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/queryField.ts
--------------------------------------------------------------------------------
/src/definitions/queryType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/queryType.ts
--------------------------------------------------------------------------------
/src/definitions/scalarType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/scalarType.ts
--------------------------------------------------------------------------------
/src/definitions/subscriptionField.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/subscriptionField.ts
--------------------------------------------------------------------------------
/src/definitions/subscriptionType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/subscriptionType.ts
--------------------------------------------------------------------------------
/src/definitions/unionType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/unionType.ts
--------------------------------------------------------------------------------
/src/definitions/wrapping.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/definitions/wrapping.ts
--------------------------------------------------------------------------------
/src/dynamicMethod.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/dynamicMethod.ts
--------------------------------------------------------------------------------
/src/dynamicProperty.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/dynamicProperty.ts
--------------------------------------------------------------------------------
/src/extensions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/extensions.ts
--------------------------------------------------------------------------------
/src/graphqlInternal.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/graphqlInternal.ts
--------------------------------------------------------------------------------
/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/index.ts
--------------------------------------------------------------------------------
/src/lang.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/lang.ts
--------------------------------------------------------------------------------
/src/makeSchema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/makeSchema.ts
--------------------------------------------------------------------------------
/src/messages.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/messages.ts
--------------------------------------------------------------------------------
/src/node.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/node.ts
--------------------------------------------------------------------------------
/src/plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/plugin.ts
--------------------------------------------------------------------------------
/src/plugins/connectionPlugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/plugins/connectionPlugin.ts
--------------------------------------------------------------------------------
/src/plugins/declarativeWrappingPlugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/plugins/declarativeWrappingPlugin.ts
--------------------------------------------------------------------------------
/src/plugins/fieldAuthorizePlugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/plugins/fieldAuthorizePlugin.ts
--------------------------------------------------------------------------------
/src/plugins/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/plugins/index.ts
--------------------------------------------------------------------------------
/src/plugins/nullabilityGuardPlugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/plugins/nullabilityGuardPlugin.ts
--------------------------------------------------------------------------------
/src/plugins/queryComplexityPlugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/plugins/queryComplexityPlugin.ts
--------------------------------------------------------------------------------
/src/printSchemaWithDirectives.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/printSchemaWithDirectives.ts
--------------------------------------------------------------------------------
/src/rebuildType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/rebuildType.ts
--------------------------------------------------------------------------------
/src/sdlConverter.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/sdlConverter.ts
--------------------------------------------------------------------------------
/src/typeHelpersInternal.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/typeHelpersInternal.ts
--------------------------------------------------------------------------------
/src/typegenAbstractTypes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/typegenAbstractTypes.ts
--------------------------------------------------------------------------------
/src/typegenAutoConfig.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/typegenAutoConfig.ts
--------------------------------------------------------------------------------
/src/typegenFormatPrettier.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/typegenFormatPrettier.ts
--------------------------------------------------------------------------------
/src/typegenMetadata.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/typegenMetadata.ts
--------------------------------------------------------------------------------
/src/typegenPrinter.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/typegenPrinter.ts
--------------------------------------------------------------------------------
/src/typegenTypeHelpers.spec.types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/typegenTypeHelpers.spec.types.ts
--------------------------------------------------------------------------------
/src/typegenTypeHelpers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/typegenTypeHelpers.ts
--------------------------------------------------------------------------------
/src/typegenUtils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/typegenUtils.ts
--------------------------------------------------------------------------------
/src/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/src/utils.ts
--------------------------------------------------------------------------------
/tests/__helpers/helpers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__helpers/helpers.ts
--------------------------------------------------------------------------------
/tests/__helpers/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__helpers/index.ts
--------------------------------------------------------------------------------
/tests/__helpers/sequencer.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__helpers/sequencer.js
--------------------------------------------------------------------------------
/tests/__helpers/testApp.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__helpers/testApp.ts
--------------------------------------------------------------------------------
/tests/__snapshots__/args.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/args.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/backingTypes.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/backingTypes.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/builder.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/builder.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/definitions.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/definitions.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/inputObjectType.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/inputObjectType.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/interfaceType.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/interfaceType.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/makeSchema.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/makeSchema.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/nonNullDefaults.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/nonNullDefaults.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/null-list.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/null-list.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/objectType.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/objectType.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/plugin.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/plugin.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/plugins.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/plugins.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/scalarType.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/scalarType.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/sdlConverter.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/sdlConverter.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/typegenPrinter.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/typegenPrinter.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/typegenPrinterGlobals.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/typegenPrinterGlobals.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/unionType.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/unionType.spec.ts.snap
--------------------------------------------------------------------------------
/tests/__snapshots__/unknownType.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/__snapshots__/unknownType.spec.ts.snap
--------------------------------------------------------------------------------
/tests/_fixtures.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/_fixtures.ts
--------------------------------------------------------------------------------
/tests/_sdl.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/_sdl.ts
--------------------------------------------------------------------------------
/tests/_setup.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/_setup.ts
--------------------------------------------------------------------------------
/tests/_types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/_types.ts
--------------------------------------------------------------------------------
/tests/abstractChecks.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/abstractChecks.spec.ts
--------------------------------------------------------------------------------
/tests/args.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/args.spec.ts
--------------------------------------------------------------------------------
/tests/backingTypes.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/backingTypes.spec.ts
--------------------------------------------------------------------------------
/tests/builder.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/builder.spec.ts
--------------------------------------------------------------------------------
/tests/definitions.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/definitions.spec.ts
--------------------------------------------------------------------------------
/tests/definitions/__snapshots__/nexusMeta.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/definitions/__snapshots__/nexusMeta.spec.ts.snap
--------------------------------------------------------------------------------
/tests/definitions/nexusMeta.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/definitions/nexusMeta.spec.ts
--------------------------------------------------------------------------------
/tests/dynamicMethods.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/dynamicMethods.spec.ts
--------------------------------------------------------------------------------
/tests/esm/esm-entry.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/esm/esm-entry.js
--------------------------------------------------------------------------------
/tests/esm/standalone.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/esm/standalone.spec.ts
--------------------------------------------------------------------------------
/tests/gh-issues/361-interfaceType-implements.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/gh-issues/361-interfaceType-implements.spec.ts
--------------------------------------------------------------------------------
/tests/inputObjectType.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/inputObjectType.spec.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/allStrategiesOptionalWhenTypeNameEnabled/__app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/allStrategiesOptionalWhenTypeNameEnabled/__app.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/allStrategiesOptionalWhenTypeNameEnabled/__schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/allStrategiesOptionalWhenTypeNameEnabled/__schema.graphql
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/allStrategiesOptionalWhenTypeNameEnabled/__typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/allStrategiesOptionalWhenTypeNameEnabled/__typegen.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/allStrategiesOptionalWhenTypeNameEnabled/case.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/allStrategiesOptionalWhenTypeNameEnabled/case.spec.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/allStrategiesOptionalWhenTypeNameEnabled/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/allStrategiesOptionalWhenTypeNameEnabled/tsconfig.json
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/isTypeOfsImplemented/__app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/isTypeOfsImplemented/__app.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/isTypeOfsImplemented/__schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/isTypeOfsImplemented/__schema.graphql
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/isTypeOfsImplemented/__typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/isTypeOfsImplemented/__typegen.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/isTypeOfsImplemented/case.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/isTypeOfsImplemented/case.spec.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/isTypeOfsImplemented/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/isTypeOfsImplemented/tsconfig.json
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingIsTypeOf/__app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingIsTypeOf/__app.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingIsTypeOf/__schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingIsTypeOf/__schema.graphql
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingIsTypeOf/__typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingIsTypeOf/__typegen.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingIsTypeOf/case.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingIsTypeOf/case.spec.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingIsTypeOf/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingIsTypeOf/tsconfig.json
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingResolveType/__app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingResolveType/__app.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingResolveType/__schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingResolveType/__schema.graphql
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingResolveType/__typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingResolveType/__typegen.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingResolveType/case.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingResolveType/case.spec.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingResolveType/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingResolveType/tsconfig.json
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingResolveTypeOrIsTypeOf/__app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingResolveTypeOrIsTypeOf/__app.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingResolveTypeOrIsTypeOf/__schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingResolveTypeOrIsTypeOf/__schema.graphql
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingResolveTypeOrIsTypeOf/__typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingResolveTypeOrIsTypeOf/__typegen.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingResolveTypeOrIsTypeOf/case.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingResolveTypeOrIsTypeOf/case.spec.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingResolveTypeOrIsTypeOf/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingResolveTypeOrIsTypeOf/tsconfig.json
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingTypenameDiscriminant/__app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingTypenameDiscriminant/__app.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingTypenameDiscriminant/__schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingTypenameDiscriminant/__schema.graphql
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingTypenameDiscriminant/__typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingTypenameDiscriminant/__typegen.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingTypenameDiscriminant/case.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingTypenameDiscriminant/case.spec.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/missingTypenameDiscriminant/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/missingTypenameDiscriminant/tsconfig.json
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/resolveTypeImplemented/__app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/resolveTypeImplemented/__app.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/resolveTypeImplemented/__schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/resolveTypeImplemented/__schema.graphql
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/resolveTypeImplemented/__typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/resolveTypeImplemented/__typegen.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/resolveTypeImplemented/case.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/resolveTypeImplemented/case.spec.ts
--------------------------------------------------------------------------------
/tests/integrations/abstractTypes/resolveTypeImplemented/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/abstractTypes/resolveTypeImplemented/tsconfig.json
--------------------------------------------------------------------------------
/tests/integrations/declarativeWrappingPlugin/__app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/declarativeWrappingPlugin/__app.ts
--------------------------------------------------------------------------------
/tests/integrations/declarativeWrappingPlugin/__schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/declarativeWrappingPlugin/__schema.graphql
--------------------------------------------------------------------------------
/tests/integrations/declarativeWrappingPlugin/__typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/declarativeWrappingPlugin/__typegen.ts
--------------------------------------------------------------------------------
/tests/integrations/declarativeWrappingPlugin/case.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/declarativeWrappingPlugin/case.spec.ts
--------------------------------------------------------------------------------
/tests/integrations/declarativeWrappingPlugin/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/declarativeWrappingPlugin/tsconfig.json
--------------------------------------------------------------------------------
/tests/integrations/kitchenSink/__app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/kitchenSink/__app.ts
--------------------------------------------------------------------------------
/tests/integrations/kitchenSink/__schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/kitchenSink/__schema.graphql
--------------------------------------------------------------------------------
/tests/integrations/kitchenSink/__typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/kitchenSink/__typegen.ts
--------------------------------------------------------------------------------
/tests/integrations/kitchenSink/case.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/kitchenSink/case.spec.ts
--------------------------------------------------------------------------------
/tests/integrations/kitchenSink/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/kitchenSink/tsconfig.json
--------------------------------------------------------------------------------
/tests/integrations/unionTooComplexToRepresent/__app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/unionTooComplexToRepresent/__app.ts
--------------------------------------------------------------------------------
/tests/integrations/unionTooComplexToRepresent/__schema.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/unionTooComplexToRepresent/__schema.graphql
--------------------------------------------------------------------------------
/tests/integrations/unionTooComplexToRepresent/__typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/unionTooComplexToRepresent/__typegen.ts
--------------------------------------------------------------------------------
/tests/integrations/unionTooComplexToRepresent/case.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/unionTooComplexToRepresent/case.spec.ts
--------------------------------------------------------------------------------
/tests/integrations/unionTooComplexToRepresent/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/integrations/unionTooComplexToRepresent/tsconfig.json
--------------------------------------------------------------------------------
/tests/interfaceType.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/interfaceType.spec.ts
--------------------------------------------------------------------------------
/tests/makeSchema.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/makeSchema.spec.ts
--------------------------------------------------------------------------------
/tests/modify.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/modify.spec.ts
--------------------------------------------------------------------------------
/tests/mutationField.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/mutationField.spec.ts
--------------------------------------------------------------------------------
/tests/nonNullDefaults.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/nonNullDefaults.spec.ts
--------------------------------------------------------------------------------
/tests/null-list.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/null-list.spec.ts
--------------------------------------------------------------------------------
/tests/objectType.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/objectType.spec.ts
--------------------------------------------------------------------------------
/tests/plugin.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/plugin.spec.ts
--------------------------------------------------------------------------------
/tests/plugins.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/plugins.spec.ts
--------------------------------------------------------------------------------
/tests/plugins/__snapshots__/connectionPlugin.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/plugins/__snapshots__/connectionPlugin.spec.ts.snap
--------------------------------------------------------------------------------
/tests/plugins/__snapshots__/declarativeWrappingPlugin.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/plugins/__snapshots__/declarativeWrappingPlugin.spec.ts.snap
--------------------------------------------------------------------------------
/tests/plugins/__snapshots__/fieldAuthorizePlugin.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/plugins/__snapshots__/fieldAuthorizePlugin.spec.ts.snap
--------------------------------------------------------------------------------
/tests/plugins/__snapshots__/queryComplexityPlugin.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/plugins/__snapshots__/queryComplexityPlugin.spec.ts.snap
--------------------------------------------------------------------------------
/tests/plugins/connectionPlugin.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/plugins/connectionPlugin.spec.ts
--------------------------------------------------------------------------------
/tests/plugins/declarativeWrappingPlugin.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/plugins/declarativeWrappingPlugin.spec.ts
--------------------------------------------------------------------------------
/tests/plugins/fieldAuthorizePlugin.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/plugins/fieldAuthorizePlugin.spec.ts
--------------------------------------------------------------------------------
/tests/plugins/nullabilityGuardPlugin.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/plugins/nullabilityGuardPlugin.spec.ts
--------------------------------------------------------------------------------
/tests/plugins/queryComplexityPlugin.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/plugins/queryComplexityPlugin.spec.ts
--------------------------------------------------------------------------------
/tests/queryField.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/queryField.spec.ts
--------------------------------------------------------------------------------
/tests/resolveTypes.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/resolveTypes.spec.ts
--------------------------------------------------------------------------------
/tests/scalarType.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/scalarType.spec.ts
--------------------------------------------------------------------------------
/tests/sdlConverter.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/sdlConverter.spec.ts
--------------------------------------------------------------------------------
/tests/subscriptionField.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/subscriptionField.spec.ts
--------------------------------------------------------------------------------
/tests/subscriptionType.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/subscriptionType.spec.ts
--------------------------------------------------------------------------------
/tests/typegen-globals/global-types-useReadonlyArrayForInputs.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/typegen-globals/global-types-useReadonlyArrayForInputs.gen.ts
--------------------------------------------------------------------------------
/tests/typegen-globals/global-types.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/typegen-globals/global-types.gen.ts
--------------------------------------------------------------------------------
/tests/typegen-globals/schema.gen.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/typegen-globals/schema.gen.graphql
--------------------------------------------------------------------------------
/tests/typegen-globals/types-useReadonlyArrayForInputs.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/typegen-globals/types-useReadonlyArrayForInputs.gen.ts
--------------------------------------------------------------------------------
/tests/typegen-globals/types.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/typegen-globals/types.gen.ts
--------------------------------------------------------------------------------
/tests/typegen/schema.gen.graphql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/typegen/schema.gen.graphql
--------------------------------------------------------------------------------
/tests/typegen/types.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/typegen/types.gen.ts
--------------------------------------------------------------------------------
/tests/typegenPrinter.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/typegenPrinter.spec.ts
--------------------------------------------------------------------------------
/tests/typegenPrinterGlobals.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/typegenPrinterGlobals.spec.ts
--------------------------------------------------------------------------------
/tests/unionType.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/unionType.spec.ts
--------------------------------------------------------------------------------
/tests/unknownType.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/unknownType.spec.ts
--------------------------------------------------------------------------------
/tests/utils.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/utils.spec.ts
--------------------------------------------------------------------------------
/tests/v15/__snapshots__/connectionPlugin-v15.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/v15/__snapshots__/connectionPlugin-v15.spec.ts.snap
--------------------------------------------------------------------------------
/tests/v15/__snapshots__/interfaceType-v15.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/v15/__snapshots__/interfaceType-v15.spec.ts.snap
--------------------------------------------------------------------------------
/tests/v15/__snapshots__/modify-v15.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/v15/__snapshots__/modify-v15.spec.ts.snap
--------------------------------------------------------------------------------
/tests/v15/__snapshots__/sdlConverter.spec.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/v15/__snapshots__/sdlConverter.spec.ts.snap
--------------------------------------------------------------------------------
/tests/v15/connectionPlugin-v15.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/v15/connectionPlugin-v15.spec.ts
--------------------------------------------------------------------------------
/tests/v15/interfaceType-v15.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/v15/interfaceType-v15.spec.ts
--------------------------------------------------------------------------------
/tests/v15/modify-v15.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/v15/modify-v15.spec.ts
--------------------------------------------------------------------------------
/tests/v15/sdlConverter.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/v15/sdlConverter.spec.ts
--------------------------------------------------------------------------------
/tests/wrapping.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tests/wrapping.spec.ts
--------------------------------------------------------------------------------
/tmp/_redirects:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tmp/_redirects
--------------------------------------------------------------------------------
/tmp/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tmp/index.html
--------------------------------------------------------------------------------
/tsconfig.build.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tsconfig.build.json
--------------------------------------------------------------------------------
/tsconfig.cjs.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tsconfig.cjs.json
--------------------------------------------------------------------------------
/tsconfig.esm.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tsconfig.esm.json
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tsconfig.json
--------------------------------------------------------------------------------
/tsconfig.spec.types.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tsconfig.spec.types.json
--------------------------------------------------------------------------------
/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/tslint.json
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/graphql-nexus/nexus/HEAD/yarn.lock
--------------------------------------------------------------------------------