Just trying to further my understanding of how drizzle works - how would the following relational query be written using the sql-like drizzle syntax? ```ts const post = await db.query.posts.findFirst({ with: { comments: true, }, }); ```