FavoriteList
No description
type FavoriteList {
id: ID!
name: String!
companyId: Int
contactId: Int
customerId: Int
isDefault: Boolean!
slug: String!
createdAt: DateTime!
updatedAt: DateTime!
products(
input: ProductSearchInput
): ProductsResponse
clusters(
input: ProductSearchInput
): ProductsResponse
company: Company
contact: Contact
customer: Customer
}
Fields
FavoriteList.id
● ID!
non-null scalar
A unique identifier for the favorite list.
FavoriteList.name
● String!
non-null scalar
The name of the favorite list.
FavoriteList.companyId
● Int
scalar
The unique ID of the company associated with the list.
FavoriteList.contactId
● Int
scalar
The unique ID of the contact associated with the list.
FavoriteList.customerId
● Int
scalar
The unique ID of the customer associated with the list.
FavoriteList.isDefault
● Boolean!
non-null scalar
Indicates if this is a default favorite list.
FavoriteList.slug
● String!
non-null scalar
A URL-friendly slug for the favorite list.
FavoriteList.createdAt
● DateTime!
non-null scalar
The date and time when the favorite list was created.
FavoriteList.updatedAt
● DateTime!
non-null scalar
The date and time when the favorite list was last updated.
FavoriteList.products
● ProductsResponse
object
FavoriteList.products.input
● ProductSearchInput
input
FavoriteList.clusters
● ProductsResponse
object
FavoriteList.clusters.input
● ProductSearchInput
input
FavoriteList.company
● Company
object
FavoriteList.contact
● Contact
object
FavoriteList.customer
● Customer
object
Returned By
favoriteList
query ● favoriteListAddItems
mutation ● favoriteListClearItems
mutation ● favoriteListCreate
mutation ● favoriteListRemoveItems
mutation ● favoriteListUpdate
mutation
Member Of
FavoriteListsResponse
object