Skip to main content

AttributeValue

Represents a value of an attribute.

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

Fields

AttributeValue.id ● ID! non-null scalar

The ID of the object

AttributeValue.sortOrder ● Int scalar

AttributeValue.tenant ● Tenant! non-null object

AttributeValue.seller ● Seller! non-null object

The seller that owns this attribute value

AttributeValue.name ● String! non-null scalar

Name of a value displayed in the interface.

AttributeValue.value ● String! non-null scalar

Supporting information like color, links, etc.

AttributeValue.slug ● String! non-null scalar

Internal representation of a value (unique per attribute).

AttributeValue.attribute ● Attribute! non-null object

AttributeValue.dateTime ● DateTime scalar

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

AttributeValue.plainText ● String! non-null scalar

AttributeValue.richText ● String! non-null scalar

AttributeValue.currency ● String! non-null scalar

AttributeValue.amount ● Decimal! non-null scalar

AttributeValue.money ● Money object

AttributeValue.reference ● String! non-null scalar

AttributeValue.boolean ● Boolean! non-null scalar

AttributeValue.file ● File object

AttributeValue.fileUrl ● String scalar

AttributeValue.date ● Date scalar

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

AttributeValue.type ● AttributeValueType 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.

Interfaces

Node interface

An object with an 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?