Skip to main content

AttributeValue

Represents a value of an attribute

type AttributeValue implements Node {
id: ID!
name: String!
slug: String!
value: String!
dateTime: DateTime
plainText: String!
richText: String!
currency: String!
reference: String!
boolean: Boolean!
fileUrl: String
sortOrder: Int
amount: Decimal!
money: Money
date: Date
file: File
type: AttributeValueType!
inputType: AttributeInputTypeEnum!
attribute: Attribute!
seller: Seller!
tenant: Tenant!
}
Show more ↓

Fields

AttributeValue.id ● ID! non-null scalar

The Globally Unique ID of this object

AttributeValue.name ● String! non-null scalar

Name of a value displayed in the interface.

AttributeValue.slug ● String! non-null scalar

Internal representation of a value (unique per attribute).

AttributeValue.value ● String! non-null scalar

Supporting information like color, links, etc.

AttributeValue.dateTime ● DateTime scalar

Populated if the attribute has date-time input_type, represent actual datetime for filtering

AttributeValue.plainText ● String! non-null scalar

Plain text value

AttributeValue.richText ● String! non-null scalar

Rich text value

AttributeValue.currency ● String! non-null scalar

Currency code for money values

AttributeValue.reference ● String! non-null scalar

Reference value

AttributeValue.boolean ● Boolean! non-null scalar

Boolean value

AttributeValue.fileUrl ● String scalar

External file URL

AttributeValue.sortOrder ● Int scalar

Sort order position

AttributeValue.amount ● Decimal! non-null scalar

Amount as decimal value

AttributeValue.money ● Money object

Money value combining amount and currency

AttributeValue.date ● Date scalar

The date component of date_time

AttributeValue.file ● File object

File associated with this attribute value

AttributeValue.type ● AttributeValueType! non-null enum

Type of value (used only when value field is set).

AttributeValue.inputType ● AttributeInputTypeEnum! non-null enum

The input type to use for entering attribute values in the dashboard.

AttributeValue.attribute ● Attribute! non-null object

The attribute this value belongs to

AttributeValue.seller ● Seller! non-null object

The seller that owns this attribute value

AttributeValue.tenant ● Tenant! non-null object

Tenant for this attribute value

Interfaces

Node interface

An object with a Globally Unique ID

Returned By

attributeValue query

Member Of

Attribute object ● AttributeValueBulkCreate object ● AttributeValueCountableEdge object ● AttributeValueCreate object ● AttributeValueDelete object ● AttributeValueUpdate object ● SelectedAttribute object

Was this page helpful?