[BAEL-16045] - Check Article Code Matches GitHub for https://www.baeldung.com/spring-graphql article

This commit is contained in:
amit2103
2019-08-01 23:45:15 +05:30
parent f3dd83f488
commit 4586025196

View File

@@ -11,7 +11,7 @@ public class Query implements GraphQLQueryResolver {
this.postDao = postDao;
}
public List<Post> recentPosts(int count, int offset) {
public List<Post> getRecentPosts(int count, int offset) {
return postDao.getRecentPosts(count, offset);
}
}