API Stability Short-Term

The updateOrganizationNotes() GraphQL mutation may be used to update a note for a given organization in LogScale. It requires root access.

For more information on organization settings, see the Organization Settings documentation page.

Syntax

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

graphql
updateOrganizationNotes(
     notes: string!
   ): boolean!

There are no special datatypes for this mutation field.

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  updateOrganizationNotes(
     notes: "A Good Company"
  )
}
Example Responses
Show:
json
{
  "data": {
    "updateOrganizationNotes": true
  }
}