Giter Club home page Giter Club logo

awesome-graphql's Introduction

Hi there ๐Ÿ‘‹

I'm Chen-Tsu! I'm a JavaScript enthusiast and open source software developer.

chentsulin's github stats

Top Repositories



awesome-graphql's People

Contributors

alexander-mart avatar arjunyel avatar aschrijver avatar chentsulin avatar igorlukanin avatar imolorhe avatar jerrymaomao avatar kasbah avatar koistya avatar larsbs avatar leebenson avatar lucasconstantino avatar m1guelpf avatar manicmaniac avatar mishushakov avatar neomatrixcode avatar pluma avatar readmecritic avatar rse avatar schickling avatar setchy avatar sezgi avatar sh0umik avatar sogko avatar stubailo avatar suranartnc avatar tretuna avatar urigo avatar wzalazar avatar xpepermint avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

awesome-graphql's Issues

Add more admins

Hi, I see that we are at 99 opened PRs, sounds like we should have more admin to review the PRs, so I propose myself. โœŒ๏ธ

Is it ok to post a link to a commercial tool?

C. T. i did't want to barge in with a direct email so i am asking here, is it ok if i submit a PR with a tool i am building to this list (comparable in main goal to postgraphql), currently in beta, will be open source but not free?
Thanks.

Validate pull requests with Travis

Hello, I wrote a tool that can validate README links (valid URLs, not duplicate). It can be run when someone submits a pull request.

It is currently being used by

Examples

If you are interested, connect this repo to https://travis-ci.org/ and add a .travis.yml file to the project.

See https://github.com/dkhamsing/awesome_bot for options, more information
Feel free to leave a comment ๐Ÿ˜„

Please add `archen` - a library building GraphQL service on existing database with defining NOTHING new

I just found a library called Archen: https://github.com/fangwd/archen/

Pros:

  1. Define NOTHING to build GraphQL service on your existing database! SO EASY!
  2. Generic structure and scalable for future support
  3. Override options to control GraphQL service security.

Cons:

  1. The documentation is not complete, and the authors are working on that.
  2. The latest version supports mysql only (and the authors are working on supporting sqlite3 and other databases)

I reckon this library will be very helpful in GraphQL community.

Here's an example:

const {graphql} = require('graphql');
const {Archen} = require('archen');

const archen = new Archen({
    database: {
        dialect: 'mysql',
        connection: {
            host: 'localhost',
            user: 'root',
            password: 'root',
            database: 'graduation_project',
            timezone: 'Z',
            connectionLimit: 10
        }
    }
});

archen.getSchemaInfo().then(() => {
    const [schema, rootValue, accessor] = [
        archen.graphql.getSchema(),
        archen.graphql.getRootValue(),
        archen.getAccessor()
    ];

    const query1 = `
    {
      task(where: {id: 1001}) {
        name,
        content,
        type,
        holder {
          name
        }
      }
    }`;
    const query2 = `
    {
      tasks {
        id,
        name,
        content,
        type,
        holder {
          name
        }
      }
    }`;

    graphql(schema, query1, rootValue, {accessor}).then(response => {
        console.log(JSON.stringify(response, null, 2));
    });
});

They provide another two examples as well: https://github.com/fangwd/archen/blob/master/example/

Split or mark client + server libraries

It's hard to tell which of these libraries are client implementations or server implementations. For example, I'm looking for a GraphQL client for PHP but most of those appear to be server implementations -- I can't tell what's what.

Add graphql-spqr

Please add GraphQL-SPQR to the Java section. It's been an active project for years.

GraphQL SPQR is a simple-to-use library for rapid development of GraphQL APIs in Java, in the code-first approach. It integrates easily into any Java based stack, with examples using Spring Boot and Spring MVC provided.

It is featured on Awesome graphql-java and has been the subject of multiple conference talks:

I made a PR that's been rotting for almost a year now, so I opened an issue to try getting some attention.

Pull requests don't pass

Guys, seems like new awesome bot doesn't pass new pull requests, because already existing links in README:
#156
https://travis-ci.org/chentsulin/awesome-graphql/builds/190590030
So as you see tests are failed because of

Issues :-(
> Links 
  1. [L124] 404 https://github.com/rmosolgo/graphql-relay-ruby  
  2. [L293] 301 https://github.com/kriasoft/graphql-starter-kit  โ†’ https://github.com/kriasoft/nodejs-api-starter 

not because of swagger2graphql itself

GraphQL results for search API results for Node.js

Did anyone implement search server API results via GraphQL + Node.js? Sphinx, ElasticSearch, you name it. Wonder which works better for Node and NoSQL database.

I'd say, would be great to list those solutions too.

Interest in GRANDStack applications

Would there be any interest in resources for building GRANDStack (graphQL, React, Apollo, Neo4j) applications? I've personally been working on a couple applications that leverage this tech stack and its supporting libraries and I believe it warrants more recognition that what it's getting currently.

Add graphql-kotlin

Hi, I would like to help to review and merge PRs if you don't mind, I could be a contributor. I would first merge my own ๐Ÿ˜‰ #539

TypeScript libraries section

A long time ago I've added a few TypeScript libraries for GraphQL:
#327

But now I see only Nexus...

image

Why they are removed? ๐Ÿ˜•

Please merge PR's

Hi @chentsulin ,
I see you are a very, very active committer on Github. Kudos to you ๐Ÿ‘
Could you, or another maintainer of this project, spare a couple of minutes to push some PR's through?

Thanks a bunch!

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.