I have a list of MongoDB _ids that correspond to their appropriate documents. Is there a way to write a graphQL query that will return a corresponding list of documents in the same order as their mongoDB _ids?
I know you can do filter{ _ids: $listOfIDs } to get a payload, but the payload does not have the order that corresponds to the order of the list of _ids.