Skip to content

MIN

The Min aggregate function allows you to retrieve the smallest value for a set of objects. To use the function, include Min(columnNameInDatabase) into the list of properties requested from the server. For example, the following query retrieves the smallest box office earnings from the Moviesdata table:

GET https://xxxx.backendless.app/api/data/Movie?props=Min(totalBoxOffice)

The query returns the following result, notice the min property in the returned object. The value of the property is the smallest amount in the totalBoxOffice column for all movies in the database:

[  
    {  
        "min": 1341511219,  
        "___class": "Movie",  
    }  
]

The function can be applied not only to the columns containing numerical values. For example, the following query retrieves the "smallest" alphanumeric value for the a movie title:

GET https://xxxx.backendless.app/api/data/Movie?props=Min(title) 

The smallest value for the alphanumeric columns is determined by the alphabetical order of the characters. As a result, the movie starting with "A" is the one returned by the server:

[  
    {  
        "min": "Avatar",  
        "___class": "Movie",  
    }  
]

Using Alias

To change the name of the returned property from min to a custom name, use the following syntax:

Min( columnNameInDatabase ) as customPropertyName

For example, the following query returns the minimum amount in the minimumTotal property:

Important

The  value must be URL-encoded. The spaces are replaced with %20:

GET https://xxxx.backendless.app/api/data/Movie?props=Min(totalBoxOffice)%20as%20minimumTotal

The response for the query now contains the minimumTotal property:

[  
    {  
        "minimumTotal": 1341511219,  
        "___class": "Movie",  
    }  
]

Grouping Results

Results in the response can be grouped by values from another column. To request grouping of the results, add the groupBy parameter to the request with the value containing the name of the column. For example, the following request returns the minimum earnings value for the movies in the database grouped by the year the movies were released:

GET https://xxxx.backendless.app/api/data/Movie?props=Min(totalBoxOffice),yearReleased&groupBy=yearReleased

The response for this request contains average earning values for the movies grouped by the release year:

[  
    {  
        "min": 2207615668,  
        "yearReleased": 1997,  
        "___class": "Movie",  
    },  
    {  
        "min": 2783918982,  
        "yearReleased": 2009,  
        "___class": "Movie",  
    },  
    {  
        "min": 1341511219,  
        "yearReleased": 2011,  
        "___class": "Movie",  
    },  
    {  
        "min": 1519479547,  
        "yearReleased": 2012,  
        "___class": "Movie",  
    },  
    {  
        "min": 1408218722,  
        "yearReleased": 2015,  
        "___class": "Movie",  
    }  
]

Sorting

The results can be sorted using the sortBy parameter. For example, results for the following request will be sorted by the values in the yearReleased column in the descending order:

GET https://xxxx.backendless.app/api/data/Movie?props=Min(totalBoxOffice),yearReleased&groupBy=yearReleased&sortBy=yearReleased%20DESC

To sort results by the aggregated value, assign a custom name to the column and sort by that name:

GET https://xxxx.backendless.app/api/data/Movie?props=Min(totalBoxOffice)%20as%20minTotal,yearReleased&groupBy=yearReleased&sortBy=minTotal

Codeless Reference

Consider the following data table called Movie:

data_service_count_example

The example below extracts the smallest value from the totalBoxOffice column. To retrieve the smallest value you must use the aggregate function Min(columnName) in the properties argument:

data_service_min_example_1

Important

For a detailed description of all input parameters see the Basic Object Retrieval topic of this guide.

After the Codeless logic runs the operation returns an object with the min property containing the value which reflects the smallest of all values stored in the requested column/property:

data_service_min_example_2

Using Alias

Any default property returned in the response can have a custom name. You can change the default property name (e.g. min) returned in the response by defining a dynamic property as shown in the excerpt below. The totalBoxOffice is the name of the column in the data table, and the smallestBoxOffice is the custom property name that will be shown in the response instead of the current property name (e.g. min):

Min(totalBoxOffice) as smallestBoxOffice

The example below retrieves the smallest value stored in the "totalBoxOffice" column and returns the result with a custom property name "smallestBoxOffice":

data_service_min_example_3

After the Codeless logic runs, the operation returns an object with a new property name smallestBoxOffice:

data_service_min_example_4

Grouping The Results

Results can be grouped by values from another column. To group results you have to reference the name of the column in the group by property. By doing so, you instruct the operation to create an object for every group of values retrieved from the column referenced in the group by property.

As you reference the column name in the group by property, the operation groups all values first into separate objects, and then it finds the smallest of all values.

The example below groups values in the totalBoxOffice column by values in the yearReleased column into distinct objects and then finds the smallest value. For better perception of the operation result you can also include the yearReleased column in the properties argument, so that you could see the smallest box office earnings for every year in the response.

data_service_sum_example_5

First, the operation has grouped all records into distinct objects based on the values in the yearReleased column passed to the group by property. Then for every object the operation has returned the smallest of all values stored in the totalBoxOffice column.

data_service_min_example_6

Sorting

You can sort the data by referencing the column name in the sort by property.

Results for the following request will be sorted by the values in the yearReleased column in the descending order:

data_service_min_example_7

As you can see, objects returned in the response are sorted in descending order by values in the yearReleased column/property:

data_service_min_example_8

The function can be applied not only to the columns containing numerical values. For example, the following query retrieves the "smallest" alphanumeric value for a movie title:

data_service_min_example_9

After the Codeless Logic runs, the operation returns an object containing the movieName custom property and the corresponding "smallest" alphanumerical value which is "007 Skyfall".

data_service_min_example_10