Skip to main content

AppProblem Object

Represents a problem associated with an app.

Added in Saleor 3.22
type AppProblem implements Node {
id: ID!
createdAt: DateTime!
updatedAt: DateTime!
count: Int!
isCritical: Boolean!
dismissed: AppProblemDismissed
message: String!
key: String!
}

Fields

id ● ID!

The ID of the app problem.

Added in Saleor 3.22

createdAt ● DateTime!

The date and time when the problem was created.

Added in Saleor 3.22

updatedAt ● DateTime!

The date and time when the problem was last updated.

Added in Saleor 3.22

count ● Int!

Number of occurrences.

Added in Saleor 3.22

isCritical ● Boolean!

Whether the problem has reached critical threshold.

Added in Saleor 3.22

dismissed ● AppProblemDismissed

Dismissal information. Null if the problem has not been dismissed.

Added in Saleor 3.22
Requires one of the following permissions: AUTHENTICATED_APPMANAGE_APPS

message ● String!

The problem message.

Added in Saleor 3.22

key ● String!

Key identifying the type of problem.

Added in Saleor 3.22

Interfaces

Node

An object with an ID

Member Of

App object ● AppProblemCreate object