organization Users

The organizationUsers query returns an array of UserAccounts with full pagination control with the listFilter parameter.

query organizationUsers (
    $search_terms: String
    $listFilter: ListFilter
) {
    organizationUsers (
        search_terms: $search_terms
        listFilter: $listFilter
    ) {
        id
        identifier
        email
        first_name
        last_name
        admin
        organization {
            id
            identifier
            admin
            restricted
            enabled
        }
    }
}
Language
Click Try It! to start a request and see the response here!