Store Shape - anailopez/Woofuora GitHub Wiki

Woofoura store shape

store = {
    session: {},
    questionDetail: {
        questionId: {
                questionData,
                user: {userData of author},
                answers: {
                    answerId: {
                            answerData,
                            user: {userData of author}
                    },
                    OrderedAnswers: []
                }
        }
    },
    allQuestions: {
        questionId: {
            questionData,
            user: {userData of author}
        },
        OrderedQuestions: []
    }
}