Skip to content
Advertisement

How to count array elements properly with multiple aggregation in Spring Data MongoDB?

I need to create advanced aggregation using Spring Data MongoDB having model like that:

JavaScript

pom.xml

JavaScript

Cities collection:

JavaScript

Libraries collection:

JavaScript

Books collection:

JavaScript

Depending on the context of the user, I have to return cities with count of libraries and books in the city that can be filtered based on startsWith() or like() principle.

Assuming that I have 2 libraries in one city and 1 library in the other.

  1. I need to count libraries using lookup first and return librariesCount – it will be 2 and 1.
  2. I need to fetch / lookup books in every library, then count them as ‘booksCount’ and then multiply by librariesCount to get total amount of booksCount in the city (let’s call it cityBooksCount).

I came up with aggregation like this:

JavaScript

Thanks to the help of one of the stackoverflow users I was able to obtain librariesCount in proper way. Unfortunately cityBooksCount always point to 0.

I’m not so familiar with MongoDB, but I know that $lookup operation is possible on array, so I’ve tried mapping libraries array to list of ObjectId, but it’s not working properly. Probably I’m doing something wrong, but I don’t know where is the problem. I get the proper amount of cities with other projected fields.

Can anyone tell me what I am doing wrong and how to correct it?

Thank you in advance.

Advertisement

Answer

This might be giving you the expected answer.

JavaScript

As we discussed, there are some slight changes. Hope, you understood how to convert the mongo query to spring data aggregation.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement