# @graphql-codegen/visitor-plugin-common

Latest version **7.2.5** (published 2026-08-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install @graphql-codegen/visitor-plugin-common
pnpm add @graphql-codegen/visitor-plugin-common
yarn add @graphql-codegen/visitor-plugin-common
bun add @graphql-codegen/visitor-plugin-common
```

## Health

**Score 75/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; has provenance; recently updated; high maintenance score; popular repo.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 7.2.5 |
| Published | 2026-08-12 |
| First published | 2019-03-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=16 |
| Dependencies | 10 |
| Unpacked size | 674.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 11261 |
| Maintainers | dotansimha, ardatan, kamilkisiela, urigo, theguild-bot |

## Links

- npm: https://www.npmjs.com/package/@graphql-codegen/visitor-plugin-common
- Repository: https://github.com/dotansimha/graphql-code-generator
- npm.io page: https://npm.io/package/@graphql-codegen/visitor-plugin-common

## Dependencies (10)

- [tslib](https://npm.io/package/tslib.md) ^2.8.0
- [auto-bind](https://npm.io/package/auto-bind.md) ^5.0.0
- [graphql-tag](https://npm.io/package/graphql-tag.md) ^2.11.0
- [parse-filepath](https://npm.io/package/parse-filepath.md) ^1.0.2
- [change-case-all](https://npm.io/package/change-case-all.md) ^2.1.0
- [dependency-graph](https://npm.io/package/dependency-graph.md) ^1.0.0
- [@graphql-tools/utils](https://npm.io/package/@graphql-tools/utils.md) ^11.2.0
- [@graphql-tools/optimize](https://npm.io/package/@graphql-tools/optimize.md) ^2.0.0
- [@graphql-codegen/plugin-helpers](https://npm.io/package/@graphql-codegen/plugin-helpers.md) ^7.1.0
- [@graphql-tools/relay-operation-optimizer](https://npm.io/package/@graphql-tools/relay-operation-optimizer.md) ^7.1.1

## Recent versions

- 7.2.5 (latest) — 2026-08-12
- 7.2.6-alpha-20260916113524-538068debb8f870dfa0c241d7e270174ebbefc3e (alpha) — 2026-09-16
- 5.7.1-rc-20250223200424-b0c97eaa2a9140eee0b80db0cbdf5d5e7fb3b715 (rc) — 2025-02-23
- 1.17.5-alpha-6dc6a6ed.0 (canary) — 2020-07-27
- 7.2.6-alpha-20260916104809-21f94631fe3b3d13985962c360ca4be5ad227fab — 2026-09-16
- 7.2.6-alpha-20260913024757-23bcbc729bb8c044054d0958237feeea7a45bb2d — 2026-09-13
- 7.2.6-alpha-20260912153306-fe8cb51405f6d75ae6452cacde53c53401eb6638 — 2026-09-12
- 7.2.5-alpha-20260812111140-54a4bfde03fdba21b8b56afdff5fb8e275793227 — 2026-08-12
- 7.2.5-alpha-20260811142941-5fa2e89de326711c5f36a5322e803bf3849db10e — 2026-08-11
- 7.2.5-alpha-20260811132625-4eb45720bfbb259d913c60679313290eef32a48a — 2026-08-11
- 7.2.4 — 2026-08-08
- 7.2.4-alpha-20260808005447-c09231416c1d5a04aff947dbeff380ade8569467 — 2026-08-08
- 7.2.3 — 2026-08-05
- 7.2.3-alpha-20260803085222-356868d6f39affd9e297ba8ff2c5f3de5fb20459 — 2026-08-03
- 7.2.3-alpha-20260803084245-a597341bcded66930c1dcc2648932e715ccebb09 — 2026-08-03
- … 6562 more at https://npm.io/package/@graphql-codegen/visitor-plugin-common/versions

## README

<div>
    <img src="./logo.svg" width="150px" alt="GraphQL Code Generator logo"/>
    <a href="https://the-guild.dev">
        <img align="right" src="https://the-guild-org.github.io/press-kit/full-dark-logo.svg" alt="Created by The Guild" style="width: 100px;align:right;"/>
    </a>
</div>

[![npm version](https://badge.fury.io/js/%40graphql-codegen%2Fcli.svg)](https://badge.fury.io/js/%40graphql-codegen%2Fcli)

[https://the-guild.dev/graphql/codegen](https://the-guild.dev/graphql/codegen)

GraphQL Code Generator is a tool that generates code out of your GraphQL schema. Whether you are
developing a frontend or backend, you can utilize GraphQL Code Generator to generate output from
your GraphQL Schema and GraphQL Documents (query/mutation/subscription/fragment).

By analyzing the schema and documents and parsing it, GraphQL Code Generator can output code at a
wide variety of formats, based on pre-defined templates or based on custom user-defined ones.
Regardless of the language that you're using, GraphQL Code Generator has you covered.

GraphQL Code Generator lets you choose the output that you need, based on _plugins_, which are very
flexible and customizable. You can also write your _plugins_ to generate custom outputs that match
your needs.

You can try this tool live on your browser and see some useful examples. Check out
[GraphQL Code Generator Live Examples](https://the-guild.dev/graphql/codegen/#live-demo).

We currently support and maintain [these plugins](https://the-guild.dev/graphql/codegen/plugins)
(TypeScript, Flow, React, Angular, MongoDB, Stencil, Reason, and some more), and there is an active
community that writes and maintains custom plugins.

## Quick Start

> You can find the complete instructions in
> [GraphQL Code Generator website](https://the-guild.dev/graphql/codegen/docs/getting-started/installation).

Start by installing the basic deps of GraphQL Codegen:

```bash
pnpm add graphql
pnpm add -D @graphql-codegen/cli
```

GraphQL Code Generator lets you setup everything by simply running the following command:

```bash
pnpm graphql-codegen init
```

Question by question, it will guide you through the whole process of setting up a schema, selecting
plugins, picking a destination of a generated file, and a lot more.

If you wish to
[manually setup codegen, follow these instructions](https://the-guild.dev/graphql/codegen/docs/getting-started/installation).

## Links

Besides our [docs page](https://the-guild.dev/graphql/codegen/docs/getting-started), feel free to go
through our published Medium articles to get a better grasp of what GraphQL Code Generator is all
about:

- [All available plugins & presets](https://the-guild.dev/graphql/codegen/plugins)

## Contributing

If this is your first time contributing to this project, please do read our
[Contributor Workflow Guide](https://github.com/the-guild-org/Stack/blob/master/CONTRIBUTING.md)
before you get started off.

Feel free to open issues and pull requests. We're always welcome support from the community.

For a contribution guide specific to this project, please refer to:
http://the-guild.dev/graphql/codegen/docs/custom-codegen/contributing.

## Code of Conduct

Help us keep GraphQL Code Generator open and inclusive. Please read and follow our
[Code of Conduct](https://github.com/the-guild-org/Stack/blob/master/CODE_OF_CONDUCT.md) as adopted
from [Contributor Covenant](https://contributor-covenant.org)

## License

[![GitHub license](https://img.shields.io/badge/license-MIT-lightgrey.svg?maxAge=2592000)](https://raw.githubusercontent.com/apollostack/apollo-ios/master/LICENSE)

MIT

---
_Source: https://npm.io/package/@graphql-codegen/visitor-plugin-common · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
