def to_list(self) -> List[MutableMapping]:
""" Fetches all data from cursor to in-memory list.
"""
items = []
async with self:
async for item in self:
items.append(item)
return items