```dart Future fetchPostsMoreThanFourRating() async { final posts = await Amplify.DataStore.query( Post.classType, where: Post.RATING.ge(4), ); print('Posts: $posts'); } ```