```dart Future fetchPublishedOrWithRatingTwoPosts() async { final posts = await Amplify.DataStore.query( Post.classType, where: Post.RATING.eq(2).or(Post.STATUS.eq(PostStatus.ACTIVE)), ); print('Posts: $posts'); } ```