The starQuery() GraphQL mutation is used to star a saved query in user settings in LogScale.

For more information on saved queries, see the User Functions (Saved Searches) reference page where saved queries are discussed. Also, look at the Searching Data documentation page as it relates to recent queries and saving queries.

Syntax

Below is the syntax for the starQuery() mutation field:

graphql
starQuery(
      input: AddStarToQueryInput!
   ): BooleanResultType!

Given Datatypes

For the given datatype, AddStarToQueryInput, there are several parameters that may be given. Below is a list of them along with their datatypes and a description of each:

Table: AddStarToQueryInput

ParameterTypeRequired[a]DefaultDescription
savedQueryIdstringyes The unique identifier for the saved search query.
searchDomainNamestringyes The name of the search domain associated with the saved query.

[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.


Returned Datatypes

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

Table: BooleanResultType

ParameterTypeRequired[a]DefaultDescription
resultsbooleanyes Whether the mutation was performed or not.

[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.