- The purpose of this exercise is to get you used to being quizzed on Interview Questions commonly asked about Mongo.
- Answers to your written questions will be recorded in Answers.md
- This is to be worked on alone but you can use outside resources. You can reference any old code you may have, and the React Documentation, however, please refrain from copying and pasting any of your answers. Try and understand the question and put your responses in your own words. Be as thorough as possible when explaining something.
- Just a friendly Reminder Don't fret or get anxious about this, this is a no-pressure assessment that is only going to help guide you here in the near future. This is NOT a pass/fail situation.
- Describe the following:
DataBase
,Collection
,Document
- Describe how one can achieve the pattern of relationships in MongoDB. What needs to take place at the schema level? How do we 'fill' in the appropriate relational data using mongoose?
- Explain a way to break up an API into Sub-Applications, which tool did we use to do that?
Reminder this is just a backend. Testing your application will require the use of Postman
or something similar.
- For this Project we're going to be building out a Backend for a
Budget Tracker
app.
- For this project you'll need three different models, budget, Expense and Category.
- This will be the budget that you set for Budget Tracker.
- An budget object saved to the DB should look like this:
{
_id: ObjectId('507f1f77bcf86cd799439011'),
title: 'Budget',
budgetAmount: 3000,
}
- An expense is a purchase one would make that will affect one's budget.
- There will be two relationships tied to an expense, the
budget
it effects, &category
it belongs to. - An expense object can look something like this:
{
_id: '503c2b66bcf86cs793443564',
amount: 35,
description: 'potatoes',
budget: ObjectId('507f1f77bcf86cd799439011'), // Monthly Spending
category: ObjectId('543d2c72gsb23cd657438921') // Groceries
}
- A category collection will consist of different places you can assign your expenses to.
- A category can be something as simple as
groceries
. - Your relationship to consider here is the relationship between
Expenses
andCategories
- An example of a category object can look something like this:
{
_id: '543d2c72gsb23cd657438921',
title: 'Groceries',
}
Add your code to server.js
. Remember to install any npm packages you need.
-
Used to save a new budget to the database.
-
Only worry about creating
ONE
budget for now. -
NOTE We only want to
create
a budget, no need to write a getter or even update the budget total directly. When we call for data to see how much is left in our budget, we'll write a separate endpoint that aggregates that information for us. We want to keep our budget total'pure'
and unaffected by our queries.
- to
create
a category you should have a'post'
method that stores the category information. - you can write a
getter
'get'
method that simply returns all the categories. Filter out any unuseful information here, meaning we just want the title of the categories. - create a minimum of 4 categories so that when you create your expenses, you can assign where they go!
- example of categories could be:
Food/Dining
Gas/Auto
Date Nights
Mortgage
- your expense should have a
'post'
method for creating the expense. To save an expense you'll need an'budget'
_id
and a'category'
_id
so that we can build out a relationship between those other collections and our expenses. - your expense route should also have a
'get'
method that returns all the expenses with the populated data.
You are not required to work on the stretch goal, but if you're done with the main project go ahead an try to figure out how to use MongoDB's Aggregation Framework.
- Aggregation is used to take data, and return back some sort of useful information about the data set. This is something that people spend their entire careers doing as data scientists.
- Mongo has a very rich way of doing this called the
aggregation-pipeline
- Take note of the aggregation method found in these docs and here
- For this Route you'll want to write a
'/get'
that will take thesum
of all your expenses, and return the difference between the total from your budget and summed up expenses. - consider what you'll need here. $sum will be your best friend. And you'll also want to consider that you'll need to be querying for the total budget.
- With this route, we want to see a list of the categories and what you've spent so far.
- sum up all all expenses by category and order the response by total expense.
- Order should be categerories with most expense at the top.