Louvain specify resolution in GDS (as known from networkx)

In networkx community API — Community detection for NetworkX 2 documentation the resolution parameter allows specifying the size of the communities.
This parameter does not seem to be available in GDS. Am I overlooking it? If not, where/how is it called in GDS?

Hello

I tried maxLevels but nothing new happened. I mean the no. of clusters remains the same when I executed the algorithm without specifying the maxLevels parameter**.**

//Community_Louvain
CALL gds.louvain.stream('myGraph',{maxLevels:3})
YIELD nodeId, communityId, intermediateCommunityIds
RETURN count(*) as size, communityId, intermediateCommunityIds
ORDER BY size ASC