List Object
Description
Represents a customer list for organizing and managing buyers.
Declaration
type List {
_id: ID!
id: Int!
title: String!
description: String
created: Date!
count: Int
system: Boolean
}
Fields
| Name | Type | Description |
|---|---|---|
_id | ID! | Internal database identifier. |
id | Int! | Numeric identifier for the list. |
title | String! | Title of the list. |
description | String | Description of the list. |
created | Date! | Date when the list was created. |
count | Int | Number of buyers currently in the list. |
system | Boolean | Whether this is a system-generated list that cannot be deleted. |