MikeBild / graphql-pouch

GraphQL runtime using PouchDB

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Object Field deprecation support

MikeBild opened this issue · comments

  • Support object field deprecation as comment
type Person {
  id: ID!
  rev: String
  firstname: String
  lastname: String
  # deprecated: Use firstname, lastname fields.
  name: String
}