Type alias CustomersFilter

CustomersFilter: {
    assignedToUser?: InputMaybe<Scalars["ID"][]>;
    customerGroupIds?: InputMaybe<Scalars["ID"][]>;
    customerGroupKeys?: InputMaybe<Scalars["String"][]>;
    isAssigned?: InputMaybe<Scalars["Boolean"]>;
    isMarkedAsSpam?: InputMaybe<Scalars["Boolean"]>;
    issuePriorityValues?: InputMaybe<Scalars["Int"][]>;
    issueStatuses?: InputMaybe<IssueStatus[]>;
    issueTypeIds?: InputMaybe<Scalars["ID"][]>;
    lastCommunicationChannels?: InputMaybe<CommunicationChannelInput[]>;
    statuses?: InputMaybe<CustomerStatus[]>;
}

Type declaration

  • Optional assignedToUser?: InputMaybe<Scalars["ID"][]>
  • Optional customerGroupIds?: InputMaybe<Scalars["ID"][]>

    Filters customers to those with at least one of the given customer group IDs. Customers with no groups will not be included. Can be combined with other group filters.

  • Optional customerGroupKeys?: InputMaybe<Scalars["String"][]>

    Filters customers to those with at least one of the given customer group keys. Customers with no groups will not be included. Can be combined with other group filters.

  • Optional isAssigned?: InputMaybe<Scalars["Boolean"]>
  • Optional isMarkedAsSpam?: InputMaybe<Scalars["Boolean"]>

    When true, filters customers to those with at least one open issue. If false, only customers who have not been marked as spam will be included.

  • Optional issuePriorityValues?: InputMaybe<Scalars["Int"][]>

    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.

  • Optional issueStatuses?: InputMaybe<IssueStatus[]>

    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.

  • Optional issueTypeIds?: InputMaybe<Scalars["ID"][]>

    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.

  • Optional lastCommunicationChannels?: InputMaybe<CommunicationChannelInput[]>
  • Optional statuses?: InputMaybe<CustomerStatus[]>

Generated using TypeDoc