If I have a query such as the following: ``` const result = await db.query.users.findMany({ with: { posts: true }, }); ``` how can I use something like ```type SelectUser = InferSelectModel<typeof users>;``` to infer users with posts included?