🚨 Announcing Vendure v2 Beta

Tag

Tag

Package: @vendure/core File: tag.entity.ts

A tag is an arbitrary label which can be applied to certain entities. It is used to help organize and filter those entities.

Signature

class Tag extends VendureEntity {
  constructor(input?: DeepPartial<Tag>)
  @Column()
    value: string;
}

Extends

Members

constructor

method
type:
(input?: DeepPartial<Tag>) => Tag

value

property
type:
string