Skip to main content

QueryEntry

No description

1
type QueryEntry {
2
Records(
3
from: FromInput!
4
where: QueryPredicateInput
5
having: QueryPredicateInput
6
sortBy: [QuerySortInput!]
7
options: QueryOptionsInput
8
offset: Long
9
limit: Int
10
groupBy: QueryGroupByInput
11
): QueryResult
12
}

Fields

Records ● QueryResult union common

Provides fields for accessing the Dari Query API.

from ● FromInput! non-null input common

Allows for specifying the source type(s) for the Query.

where ● QueryPredicateInput input common

Allows for specifying the where predicate for the Query.

having ● QueryPredicateInput input common

Allows for specifying the having predicate for the Query.

sortBy ● [QuerySortInput!] list input common

Allows for specifying the sort type for the Query.

options ● QueryOptionsInput input common

Allows for specifying the options for the Query.

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.

groupBy ● QueryGroupByInput input common

Allows for specifying the group by for the Query result.

Returned By

Query query