When calling {members { members () }} with a page size greater than it's max (100) no error is thrown. The max value (100) is used instead.
E.g. given:
query {
members {
members (pageSize: 300 orderBy: FIRSTNAME) {
name
}
}
}
The resulting page of members will be 100. An error should be thrown indicating that the max page size.
When calling
{members { members () }}with a page size greater than it's max (100) no error is thrown. The max value (100) is used instead.E.g. given:
The resulting page of members will be 100. An error should be thrown indicating that the max page size.