Created
September 28, 2017 06:29
-
-
Save aofleejay/3d7cba6b17d12d7c3777af7c446270cd to your computer and use it in GitHub Desktop.
User type with deprecated field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type User { | |
id: String! | |
name: String @deprecated(reason: "Use firstname instead.") | |
firstname: String | |
age: Int | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment