OBJECT
NfAnomalyResultGroupedData
Description
Non-filesystem anomaly result data with group by information applied to it.
link GraphQL Schema definition
- type NfAnomalyResultGroupedData {
- # Group by information.
- : NfAnomalyResultGroupByInfo!
- # Provides further groupings for the data.
- #
- # Arguments
- # groupBy: Group non-filesystem anomaly results by field.
- (
- : NfAnomalyResultGroupBy!
- ): [NfAnomalyResultGroupedData!]!
- # Paginated anomaly result data.
- #
- # Arguments
- # first: Returns the first n elements from the list.
- # after: Returns the elements in the list that occur after the
- # specified cursor.
- # last: Returns the last n elements from the list.
- # before: Returns the elements in the list that occur before the
- # specified cursor.
- # sortOrder: Sorts the order of results.
- # sortBy: Sort non-filesystem anomaly results by field.
- # filter: Filter non-filesystem anomaly results by input.
- (
- : Int,
- : String,
- : Int,
- : String,
- : SortOrder,
- : NfAnomalyResultSortBy,
- : NfAnomalyResultFilterInput
- ): NfAnomalyResultConnection!
- }
link Require by
- NfAnomalyResultGroupedDataNon-filesystem anomaly result data with group by information applied to it.
- NfAnomalyResultGroupedDataConnectionPaginated list of NfAnomalyResultGroupedData objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- NfAnomalyResultGroupedDataEdgeWrapper around the NfAnomalyResultGroupedData object. This wrapper is used for pagination.