List
No description
type List {
id: ID!
name: String!
member_count: Int
member_mailable_count: Int
created_at: DateTime
updated_at: DateTime
last_mailed: String
archived: Boolean
folder: ListFolder
automations(
whereBetween: [DateTime!]
): [Campaign!]
contacts(
orderBy: [ListContactsOrderByOrderByClause!]
where: ListContactsWhereWhereConditions
hasListParticipationChanges: ListContactsHasListParticipationChangesWhereHasConditions
first: Int!
page: Int
): ContactPaginator!
listParticipationChanges(
orderBy: [ListListParticipationChangesOrderByOrderByClause!]
where: ListListParticipationChangesWhereWhereConditions
first: Int!
page: Int
): ListParticipationChangePaginator!
}
Fields
List.id ● ID! non-null scalar
List.name ● String! non-null scalar
List.member_count ● Int scalar
List.member_mailable_count ● Int scalar
List.created_at ● DateTime scalar
List.updated_at ● DateTime scalar
List.last_mailed ● String scalar
List.archived ● Boolean scalar
List.folder ● ListFolder object
List.automations ● [Campaign!] list object
List.automations.whereBetween ● [DateTime!] list scalar
List.contacts ● ContactPaginator! non-null object
List.contacts.orderBy ● [ListContactsOrderByOrderByClause!] list input
List.contacts.where ● ListContactsWhereWhereConditions input
List.contacts.hasListParticipationChanges ● ListContactsHasListParticipationChangesWhereHasConditions input
List.contacts.first ● Int! non-null scalar
Limits number of fetched items. Maximum allowed value: 500.
List.contacts.page ● Int scalar
The offset from which items are returned.
List.listParticipationChanges ● ListParticipationChangePaginator! non-null object
List.listParticipationChanges.orderBy ● [ListListParticipationChangesOrderByOrderByClause!] list input
List.listParticipationChanges.where ● ListListParticipationChangesWhereWhereConditions input
List.listParticipationChanges.first ● Int! non-null scalar
Limits number of fetched items. Maximum allowed value: 500.
List.listParticipationChanges.page ● Int scalar
The offset from which items are returned.
Returned By
archiveLists mutation ● createList mutation ● deleteList mutation ● list query ● listUpdated subscription ● moveListsToFolder mutation ● unArchiveLists mutation ● updateList mutation ● updateListBroadcast mutation
Member Of
Contact object ● FormMapMappings object ● ListPaginator object


