Sample State - mboo1/Quora-Proj GitHub Wiki

{
  entities: {
    questions: {
      1: {
        id: 1,
        title: "What is the biggest rock?"
        body: "I don't know the answer",
        authorId: 11,
        answerIds: [4,3,1]
      },
      2: {
        id: 2,
        title: "How is babby formed?"
        body: "how is babby formed?",
        authorId: 25,
        answerIds: [6,8,10]
      },
      3: {
        id: 3,
        title: "Who shot JR?"
        body: "my dad keeps asking me this",
        authorId: 3,
        answerIds: [78,32,5]
      }
    },
    users: {
      11: {
        id: 11,
        username: "socrates",
        authoredQuestionIds: [1]    
      },
      25: {
        id: 25,
        username: "lao tzu",
        authoredChirpIds: [2,3]
      }
    },
    answers: {
      1: {
        id: 1,
        body: "it was Kristen Shepherd",
        authorId: 4,
        questionId: 3,
      },
      2: {
        id: 2,
        body: "Can't tell you"
        authorId: 2,
        questionId: 2
      },
    }
    topics: {
      1: {
        title: "philosophy"
      },
      4: {
        title: "science"
      },
    }
  },
   topic/question associations: {
     1: {
        topic: 2,
        question: 3
     }
     2: {
        topic: 5,
        question: 7
     }
   }
  ui: {
    loading: true/false
  },
  errors: {
    login: ["Incorrect username/password combination"],
    questionForm: ["Question title cannot be blank"],
  },
  session: { currentUserId: 6 }
}
⚠️ **GitHub.com Fallback** ⚠️