Skip to main content

ProductAttribute

No description

type ProductAttribute implements Attribute {
id: String!
value: AttributeValue!
createdAt: DateTime!
lastModifiedAt: DateTime!
createdBy: Int
lastModifiedBy: Int
attributeDescription: AttributeDescription
productId: Int!
}

Fields

ProductAttribute.id ● String! non-null scalar

The ID of the attribute

ProductAttribute.value ● AttributeValue! non-null interface

The value of the attribute

ProductAttribute.createdAt ● DateTime! non-null scalar

The date when the attribute was created

ProductAttribute.lastModifiedAt ● DateTime! non-null scalar

The date when the attribute was last modified

ProductAttribute.createdBy ● Int scalar

The ID of the user that created the attribute

ProductAttribute.lastModifiedBy ● Int scalar

The ID of the user that last modified the attribute

ProductAttribute.attributeDescription ● AttributeDescription object

ProductAttribute.productId ● Int! non-null scalar

The ID of the product this attribute belongs to

Interfaces

Attribute interface