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

AppProblem.id ● ID! non-null scalar miscellaneous

The ID of the app problem.

Added in Saleor 3.22

AppProblem.createdAt ● DateTime! non-null scalar miscellaneous

The date and time when the problem was created.

Added in Saleor 3.22

AppProblem.updatedAt ● DateTime! non-null scalar miscellaneous

The date and time when the problem was last updated.

Added in Saleor 3.22

AppProblem.count ● Int! non-null scalar miscellaneous

Number of occurrences.

Added in Saleor 3.22

AppProblem.isCritical ● Boolean! non-null scalar miscellaneous

Whether the problem has reached critical threshold.

Added in Saleor 3.22

AppProblem.dismissed ● AppProblemDismissed object miscellaneous

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

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

AppProblem.message ● String! non-null scalar miscellaneous

The problem message.

Added in Saleor 3.22

AppProblem.key ● String! non-null scalar miscellaneous

Key identifying the type of problem.

Added in Saleor 3.22

Interfaces

Node interface miscellaneous

An object with an ID

Member Of

App object ● AppProblemCreate object