hey! each data loader just returns a list of documents, you can just join them together into a bigger list if that works!
e.g.
docs1 = GoogleDocsReader(...).load_data(...)
docs2 = NotionReader(...).load_data(...)
docs3 = SimpleDirectoryReader(...).load_data(...)
does that help?