The searchLogCollectorConfigurations() GraphQL query is used to get paginated search results. This is a root operation.

Syntax

Below is the syntax for the searchLogCollectorConfigurations() query field:

graphql
searchLogCollectorConfigurations(
     searchFilter: string, 
     skip: integer = 0,
     limit: integer = 50,
     sortBy: FleetConfiguration__SortBy = Name,
     orderBy: OrderBy = ASC
   ): SearchLogCollectorConfigurationResultSet!

Given Datatypes

Several of the given datatypes are standard types (e.g., string, integer). However, there is the special datatype, FleetConfiguration__SortBy. See FleetConfiguration__SortBy table.

Returned Datatypes

The returned datatype SearchLogCollectorConfigurationResultSet has its own parameters. Below is a list of them along with their datatypes and a description of each:

Table: SearchLogCollectorConfigurationResultSet

ParameterTypeRequired[a]DefaultDescription
totalResultsintegeryes The total number of matching results.
results[LogCollectorConfiguration]yes The paginated result set (see LogCollectorConfiguration Table).

[a] Some arguments may be required, as indicated in this column. For some fields, this column indicates that a result will always be returned for it.