I'd like to perform a query like so:
query = users.select().where(users.column.id == id) res = await database.execute(query) I would then like to add some error handling by checking res. if not res does not seem to be correct. What is the proper way to do this?