Coder Social home page Coder Social logo

chromatophore's Introduction

Chromatophore

Some species can rapidly change colour through mechanisms that translocate pigment and reorient reflective plates within chromatophores. This process, often used as a type of camouflage, is called physiological colour change or metachrosis

Chromatophore is a graphql-java compatible library that helps schema designers to evolve the schema and deprecate field without impacting new clients.

Note: This is mostly a POC and is in development right now.

How it works

When your GraphQL server receives at request, it pins every requested field to the requesting client. Going forward, this client will always be served that version of the field.

When a field needs to be deprecated, we can simply deprecate it as usual:

type Product {
    price: Int @deprecated(reason: "Price as a Int was a terrible idea!")
}

Usually, we'd introduce a field like priceV2 or priceObject because price is already taken. However, it sucks to make new clients pay the cost of our mistakes. Chromatophore lets you introduce new fields, and expose them as an old name for new clients:

type Product {
    price: Int @deprecated(reason: "Price as a Int was a terrible idea!")
    
    """
    Only you sees `priceV2`, for new clients, priceV2 will actually
    be exposed as `price`.
    """
    priceV2: Price @supersedesField(field: "price", version: 1)
}

type Price {
    cents: Int
}

Client Upgrade

TODO

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.