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