1👍
✅
Make fetches to pull all of a table and store it as in object. You can also pull all of the data from the tables and sort it with an algorithm on the frontend and place it in the state. It sounds more like an SQL question than a Vue/Vuex question.
You can use an inner join to get all tweets and their users, sort that on the frontend in whatever format you like and then persist it in the state. You basically just have to decide if you want to organize it in the backend via SQL or in the frontend via JavaScript.
👤Arc
Source:stackexchange.com