Queries
customers
Fetch a paginated list of all customers in the workspace. Supports filtering by group membership,
company, spam status and more via filters, and ordering via sortBy. Use cursor-based pagination
(first/after or last/before) to page through large result sets. Requires the customer:read permission.
QUERY
customers(filters: CustomersFilter, sortBy: CustomersSort, first: Int, after: String, last: Int, before: String): CustomerConnection!Arguments
filters
sortBy
first
Int
after
String
last
Int
before
String
Returns
edges
[CustomerEdge!]!
pageInfo
totalCount
Int!
Query
Response
Query
Response

