npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@devticon-os/graphql-codegen-axios

v0.5.0

Published

A code generation tool that generates an Axios SDK based on your GraphQL queries. This tool makes it easy to consume GraphQL APIs in your Axios projects by automatically generating code for querying your GraphQL API and mapping the results to JavaScript o

Downloads

94

Readme

graphql-codegen-axios

A code generation tool that generates an Axios SDK based on your GraphQL queries. This tool makes it easy to consume GraphQL APIs in your Axios projects by automatically generating code for querying your GraphQL API and mapping the results to JavaScript objects.

Features

  • Generates TypeScript code for querying GraphQL APIs with Axios.
  • Supports the @first, @firstOrFail, and @nonNullable directives.

Usage

To use graphql-codegen-axios, you need to have Node.js installed on your system.

Installation You can install graphql-codegen-axios using npm:

npm install @devticon-os/graphql-codegen-axios --save-dev
yarn add @devticon-os/graphql-codegen-axios -D
pnpm add @devticon-os/graphql-codegen-axios -D

Configuration

In your project's codegen.yml configuration file, add the following configuration:

schema: https://your-graphql-api.com/graphql
documents: src/**/*.graphql
generates:
    src/generated/graphql.ts:
        plugins:
        - typescript
        - typescript-operations
        - @devticon-os/graphql-codegen-axios

You can customize the output file path and other settings as per your requirements.

Directives

graphql-codegen-axios supports the following directives:

  • @first: Returns only the first object from a collection.
  • @firstOrFail: Returns the first object from a collection or throws an error if the collection is empty.
  • @nonNullable: Throws an error if the query returns null. To use a directive, add it to your GraphQL query like this:
query GetFirstUser {
    users(first: 1) @first {
      id
      name
    }
}
query GetFirstUser {
    users(first: 1) @firstOrFail {
      id
      name
    }
}
query GetFirstUser {
    user(id: "1") @nonNullable {
      id
      name
    }
}

Field Selection

If your query selects only one field, it will be returned directly instead of being wrapped in an object. For example, the following query:

query getCats {
  cats {
    id
  }
}

Will generate code that directly returns the name field:

export const getSdk = (client: AxiosInstance) => ({
  getCats: (variables: GetCatsQueryVariables, config?: AxiosRequestConfig) =>
    client
      .post<GraphqlResponse<GetCatsQuery>>('', { variables, query: getCatsRawQuery }, config)
      .then(handleResponse) // returns data from axios response
      .then(unpackSingleResults('cats')) // returns "cats" from GetCatsQuery object,
});

Generating Code

You can generate the Axios SDK by running the following command:

npx graphql-codegen

This will generate the TypeScript code in the specified output file path.

Contributing

Contributions are welcome! Please see the contributing guidelines for more information.

License

This project is licensed under the MIT License. See the LICENSE file for details.