Coder Social home page Coder Social logo

nilportugues / graphql-data-access-generator Goto Github PK

View Code? Open in Web Editor NEW
1.0 3.0 0.0 85 KB

Generate all queries, mutation, subscriptions, fragments and types for any GraphQL schema

JavaScript 35.68% TypeScript 64.32%
code-generation gql gqlgen graphql graphql-schema graphql-types typescript graphql-fragments graphql-query-generator graphql-subcriptions

graphql-data-access-generator's Introduction

GraphQL Data Access Generator

This project's goal is to generate all queries, mutation, subscriptions, fragments and types for any GraphQL schema.

Installation

This is a development tool, so make sure you install it with --save-dev or -D.

npm install graphql-data-access-generator --save-dev

yarn add -D graphql-data-access-generator

Demo

All code generation can be demo'd by looking into the example directory

Usage

  1. Provide a graphqlUrl and optionally the required headers to authenticate.
  2. Provide a schemaFile location to download the current GraphQL schema.
  3. Provide a destinationPath where all generated code will be outputed (it will be TypeScript).
const generator = require('graphql-data-access-generator')

async function main () {
  await generator({
    graphqlUrl: "http://0.0.0.0:8055/graphql",
    schemaFile: "/tmp/schema.graphql",
    headers: { 
      "Authorization": "Bearer graphql-admin" 
    },
    destinationPath: __dirname + "/generated",
  });
}

main()

Distribution file

The current bundle size for this repository is 3.9MB. All of it belongs to dist/index.js.

The reason behind this file size is we're using @vercel/ncc to generate one file with all the dependencies embedded to the generated dist/index.js file. This makes this package have no real dependencies when being installed in your project.

Working with this approach enables us to use this piece of software today and in the future, as we can guarantee it will not collide with different library versions and breaking changes that could potentally be introduced in the future.

graphql-data-access-generator's People

Contributors

nilportugues avatar nportugues avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.