ProductCosts
Cost information for a single product within a period, including usage and cost components.
type ProductCosts {
name: Product!
usage: Decimal
unit: Unit!
costs: [ProductCost!]
}
Fields
ProductCosts.name ● Product! non-null enum
The product these costs relate to.
ProductCosts.usage ● Decimal scalar
The measured usage for the product in the specified unit.
ProductCosts.unit ● Unit! non-null enum
The unit in which the usage is expressed.
ProductCosts.costs ● [ProductCost!] list object
Breakdown of individual cost components for this product.
Member Of
Cost object