Last active
October 16, 2016 22:58
-
-
Save nwillc/be7fbde6515ea87b33bf9d3de2cbfbfc to your computer and use it in GitHub Desktop.
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
@GraphQLName("Entity") | |
public abstract class Entity { | |
private String key; | |
@GraphQLField | |
@GraphQLDescription("The unique identifier") | |
public String getKey() { | |
return key; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment