Hi guys, wondering if you can count the records re...
# orm-help
t
Hi guys, wondering if you can count the records returned using the fluent api somehow. For example, is it possible to count the amount of tweet likes returned in this example below. It doesn’t look like it .
Copy code
.findUnique({
        where: {
          id: tweet.id,
        },
      })
      .tweetLikes();