In my mongodb collection called "jobs," I have a document format that needs to display all documents matching my query.
{
"_id": {
"$oid": "60a79952e8728be1609f3651"
},
"title": "Full Stack Java Developer",
"skills": [
{
"name": "Core Java"
},
{
"name": "Spring"
},
{
"name": "Java"
}
],
"graduationRequired": true,
"jobLocations": [
{
"name": "Hyderabad"
}
],
"isAvailable": false,
}
I have the following information from the client which I need to use for querying the "jobs" collection:
- skills: ["Java", "Core Java", "HTML", "CSS"]
- jobLocations: "Hyderabad"