CustomersFilter
No description
input CustomersFilter {
statuses: [CustomerStatus!]
isAssigned: Boolean
assignedToUser: [ID!]
lastCommunicationChannels: [CommunicationChannelInput!]
issueStatuses: [IssueStatus!]
issueTypeIds: [ID!]
issuePriorityValues: [Int!]
}
Fields
CustomersFilter.statuses
● [CustomerStatus!]
list enum
CustomersFilter.isAssigned
● Boolean
scalar
CustomersFilter.assignedToUser
● [ID!]
list scalar
CustomersFilter.lastCommunicationChannels
● [CommunicationChannelInput!]
list enum
CustomersFilter.issueStatuses
● [IssueStatus!]
list enum
Filters customers to those with at least one issue of the given issue statuses (OPEN or RESOLVED). Customers with no issues will not be included. Can be combined with other issue filters.
CustomersFilter.issueTypeIds
● [ID!]
list scalar
Filters customers to those with at least one issue of the given issue type IDs. Customers with no issues will not be included. Can be combined with other issue filters.
CustomersFilter.issuePriorityValues
● [Int!]
list scalar
Filters customers to those with at least one issue of the given issue priority values. Customers with no issues will not be included. Can be combined with other issue filters.
Member of
customers
query