Query.Datagrid.Aggregate

Description

Query aggregate functions.

Functions

NameSignature and Synopsis
avgvoid avg(String resultSetName, String entityUri, String fieldName)
Find the average of the entities from the field specified by field name, of the specified URI.
avgListObject avgList(String resultSetName, String entityUri, String fieldName)
Find the average of the entities from the field specified by field name, of the specified URI.
countvoid count(String resultSetName, String entityUri)
Count the number of entities of the URI specified.
countListObject countList(String resultSetName, String entityUri)
Count the number of entities of the URI specified.
filterAvgvoid filterAvg(String resultSetName, String entityUri, String fieldName, String filter)
Find the average of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter.
filterAvgListObject filterAvgList(String resultSetName, String entityUri, String fieldName, String filter)
Find the average of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter.
filterCountvoid filterCount(String resultSetName,String entityUri, String filter)
Count the number of entities of the specified URI, which satisfies the condition in the filter.
filterCountListObject filterCountList(String resultSetName,String entityUri, String filter)
Count the number of entities of the specified URI, which satisfies the condition in the filter.
filterMaxvoid filterMax(String resultSetName, String entityUri, String fieldName, String filter)
Find the maximum of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter.
filterMaxListObject filterMaxList(String resultSetName, String entityUri, String fieldName, String filter)
Find the maximum of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter.
filterMinvoid filterMin(String resultSetName, String entityUri, String fieldName, String filter)
Find the minimum of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter.
filterMinListObject filterMinList(String resultSetName, String entityUri, String fieldName, String filter)
Find the minimum of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter.
filterSumvoid filterSum(String resultSetName, String entityUri, String fieldName, String filter)
Find the sum of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter.
filterSumListObject filterSumList(String resultSetName, String entityUri, String fieldName, String filter)
Find the sum of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter.
groupAvgvoid groupAvg(String resultSetName, String entityUri, String fieldName, String filter, String... groupByFieldNames)
Find the average of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter for each group.
groupAvgListObject groupAvgList(String resultSetName, String entityUri, String fieldName, String filter, String... groupByFieldNames)
Find the average of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter for each group.
groupCountvoid groupCount(String resultSetName, String entityUri, String filter, String... groupByFieldNames)
Count the number of entities of the specified URI, which satisfies the condition in the filter for each group.
groupCountListObject groupCountList(String resultSetName, String entityUri, String filter, String... groupByFieldNames)
Count the number of entities of the specified URI, which satisfies the condition in the filter for each group.
groupMaxvoid groupMax(String resultSetName, String entityUri, String fieldName, String filter, String... groupByFieldNames)
Find the maximum of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter for each group.
groupMaxListObject groupMaxList(String resultSetName, String entityUri, String fieldName, String filter, String... groupByFieldNames)
Find the maximum of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter for each group.
groupMinvoid groupMin(String resultSetName, String entityUri, String fieldName, String filter, String... groupByFieldNames)
Find the minimum of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter for each group.
groupMinlistObject groupMinList(String resultSetName, String entityUri, String fieldName, String filter, String... groupByFieldNames)
Find the minimum of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter for each group.
groupSumvoid groupSum(String resultSetName, String entityUri, String fieldName, String filter, String... groupByFieldNames)
Find the sum of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter for each group.
groupSumListObject groupSumList(String resultSetName, String entityUri, String fieldName, String filter, String... groupByFieldNames)
Find the sum of the entities from the field specified by field name, of the specified URI, which satisfies the condition in the filter for each group.
maxvoid max(String resultSetName, String entityUri, String fieldName)
Find the maximum of the entities from the field specified by field name, of the specified URI.
maxListObject maxList(String resultSetName, String entityUri, String fieldName)
Find the maximum of the entities from the field specified by field name, of the specified URI.
minvoid min(String resultSetName, String entityUri, String fieldName)
Find the minimum of the entities from the field specified by field name, of the specified URI.
minListObject minList(String resultSetName, String entityUri, String fieldName)
Find the minimum of the entities from the field specified by field name, of the specified URI.
sumvoid sum(String resultSetName, String entityUri, String fieldName)
Find the sum of the entities from the field specified by field name, of the specified URI.
sumListObject sumList(String resultSetName, String entityUri, String fieldName)
Find the sum of the entities from the field specified by field name, of the specified URI.