System.out.println("Application.Application: Fetch author of post");
User postedByUser = randomPost.user();
System.out.println("Application.Application: " + postedByUser.displayName());
System.out.println("Application.Application: Fetching posts by author");
NSArray<Post> userPosts = postedByUser.posts();
for (Post post : userPosts) {
System.out.println("Application.Application: " + post.createdAt());
}
System.out.println("Application.Application: This doesn't start an app right now -- it just runs a bunch of example fetches.");