OBJECT
ObservationQuery
Observation queries
link GraphQL Schema definition
- type ObservationQuery {
- # Query aggregated information on observations
- #
- # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
- # for a stable API but we reserve the right to fix issues including modifying the
- # schema if required.
- #
- # Arguments
- # aggregations: Specify aggregation buckets
- # filter: Optional additional field filters.
- # observationFilter: Specify query filter
- (
- ObservationAggregationInput!]!, : [
- QueryFilter, :
- ObservationFilter :
- ): ObservationAggregations!
- # Query histogram of observations
- #
- # Arguments
- # histogramParam: Histogram input parameter
- (
- ObservationHistogramInput! :
- ): [ObservationHistogramResult!]
- # Query observations by list of given search criteria
- #
- # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
- # for a stable API but we reserve the right to fix issues including modifying the
- # schema if required.
- #
- # Arguments
- # after: Return records after the given cursor, as per GraphQL
- # Relay spec
- # filter: Optional field filters
- # first: Return first N records in a paged response, as per
- # GraphQL Relay spec
- # observationFilter: Observation filter with filter parameters
- # sort: Sort order for results in ObservationConnection
- (
- String, :
- QueryFilter, :
- Int, :
- ObservationFilter, :
- QuerySort!] : [
- ): ObservationConnection!
- }