Skip to main content

Grouping

No description

1
type Grouping {
2
count: Long
3
keys: [String]!
4
min(
5
field: String!
6
): String
7
max(
8
field: String!
9
): String
10
sum(
11
field: String!
12
): Float
13
nonNullCount(
14
field: String!
15
): Long
16
itemsSelect(
17
offset: Long
18
limit: Int
19
): QuerySelect!
20
}

Fields

count ● Long scalar common

keys ● [String]! non-null scalar common

min ● String scalar common

field ● String! non-null scalar common

max ● String scalar common

field ● String! non-null scalar common

sum ● Float scalar common

field ● String! non-null scalar common

nonNullCount ● Long scalar common

field ● String! non-null scalar common

itemsSelect ● QuerySelect! non-null object common

offset ● Long scalar common

Allows for specifying the pagination offset for the Query result.

limit ● Int scalar common

Allows for specifying the pagination limit for the Query result.

Member Of

Was this page helpful?

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.