Tag: Api Design

  • Forward compatiblity in GraphQL

    Forward compatiblity in GraphQL

    4 GraphQL is well-known for its easy to maintain backward-compatibility of APIs defined with it. You’re supposed to just add new fields/types every time you need them and never remove old ones, only mark them with @deprecated directive. Thus, your server could evolve independently of its clients versions. However, I have a quite opposite problem:…