AppProblem Object
Represents a problem associated with an app.
Added in Saleor 3.22type 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.22createdAt ● DateTime!
The date and time when the problem was created.
Added in Saleor 3.22updatedAt ● DateTime!
The date and time when the problem was last updated.
Added in Saleor 3.22count ● Int!
Number of occurrences.
Added in Saleor 3.22isCritical ● Boolean!
Whether the problem has reached critical threshold.
Added in Saleor 3.22dismissed ● AppProblemDismissed
Dismissal information. Null if the problem has not been dismissed.
Added in Saleor 3.22message ● String!
The problem message.
Added in Saleor 3.22key ● String!
Key identifying the type of problem.
Added in Saleor 3.22Interfaces
Node
An object with an ID
Member Of
App object ● AppProblemCreate object