StockEvent
History log of stock changes.
type StockEvent implements Node {
id: ID!
date: DateTime!
parameters: JSONString!
type: StockEventType!
stock: Stock
user: User
}
Fields
StockEvent.id ● ID! non-null scalar
The Globally Unique ID of this object
StockEvent.date ● DateTime! non-null scalar
StockEvent.parameters ● JSONString! non-null scalar
Event parameters
StockEvent.type ● StockEventType! non-null enum
Type of stock event
StockEvent.stock ● Stock object
The stock record this event relates to
StockEvent.user ● User object
User who triggered this event
Interfaces
Node interface
An object with a Globally Unique ID
Member Of
ProductVariant object