Code Monkey home page Code Monkey logo

gatsby-source-modular-graphql's Introduction

Gatsby Modular GraphQL Source Plugin

Gatsby source plugin which adds modularized third-party GraphQL schemas to Gatsby GraphQL with Apollo-Client side execution support.

Conceptual thoughts

  • Unified and frontend-driven way to define schemas, resolvers, context and data queries/mutations
  • Adds local and remote third-party GraphQL schemas to the client-side and Gatsby GraphQL data sources
  • Modularize and combine multiple local and remote GraphQL-Schemas into One-Graph

Read more:

Setup

npm install gatsby-source-modular-graphql --save-dev yarn add gatsby-source-modular-graphql --dev

How to use?

gatsby-config.js

{
  resolve: 'gatsby-source-modular-graphql',
  options: {
    path: './graphql',
    schemaModules:
      process.env.NODE_ENV === 'remote'
        ? ['my-remote-schema']
        : ['my-local-schema'],
  },
}

How to add a local schema?

./graphql/my-local-schema

module.exports = {
  typeDefs: `
  type Query {
    todos: [Todo]
  }

  type Todo {
    id: ID!
    description: String
    done: Boolean
  }
  `,
  resolvers: {
    Query: {
      todos: (parent, args, { todos: { todosAll } }) => {
        return todosAll();
      },
    },
  },
  context: {
    todos: {
      todosAll: () => [
        { id: 1, description: 'A', done: false, modifiedAt: Date.now() },
        { id: 2, description: 'B', done: false, modifiedAt: Date.now() },
      ],
    },
  },
};

How to add a remote schema?

./graphql/my-remote-schema

module.exports = {
  uri: 'https://example.com/graphql',
  headers: {
    authorization: 'secret',
  },
  typeDefs: `
  type Query {
    todos: [Todo]
  }

  type Todo {
    id: ID!
    description: String
    done: Boolean
  }
  `,
};

How to use in my Gatsby-Pages and React-Components?

gatsby-source-modular-graphql's People

Contributors

mikebild avatar

Stargazers

 avatar  avatar  avatar  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.