A typical workflow with ORMs is to, for example, fetch an item from the DB and include the user who created it. How would I do that with AppWrite? Is that easily available in the docs somewhere?
Here's an example:
const response = await databases.getDocument(
DATABASE_ID,
BOOKS_COLLECTION_ID,
id,
)