FAQ
Unknown operation

Why is the operation marked as unknown?

LogQL parses the operation body to determine the type (query, mutation or subscription) of the operation. When the operation body is invalid and cannot be parsed, it will display unknown instead.

For example, these will be shown as unknown in the app:

# misspelled "mutation"
muttion CreateFolder($folderName: String!) {
  createFolder(folder: $folderName) {
    path
  }
}
# missing final bracket
query GetMovies {
  id
  name
  actors {
    firstName
    lastName
    role
  }