Skip to content

Instantly share code, notes, and snippets.

@nwillc
Last active October 16, 2016 22:58
Show Gist options
  • Save nwillc/be7fbde6515ea87b33bf9d3de2cbfbfc to your computer and use it in GitHub Desktop.
Save nwillc/be7fbde6515ea87b33bf9d3de2cbfbfc to your computer and use it in GitHub Desktop.
@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