Skip to main content

RoleSearchInput

No description

input RoleSearchInput {
userIds: [Int!]!
offset: Int
page: Int
sortInputs: [RoleSortInput!]
}

Fields

RoleSearchInput.userIds ● [Int!]! non-null scalar

Filter roles by specific user identifiers.

Provide an array of user IDs to retrieve roles assigned to those users. Results will include all roles associated with the specified users. Array must contain unique positive integers only.

RoleSearchInput.offset ● Int scalar

Number of items to return per page.

Controls the maximum number of roles returned in a single response. Used in conjunction with page parameter for pagination. Must be a positive integer with minimum value of 1.

RoleSearchInput.page ● Int scalar

Page number for pagination.

Specifies which page of results to return. Page numbering starts at 1. Used with offset parameter to control result pagination. Must be a positive integer with minimum value of 1.

RoleSearchInput.sortInputs ● [RoleSortInput!] list input

Sorting criteria for role results.

Specify one or more fields to sort the results by, along with the sort order. Multiple sort criteria are applied in the order specified. Array must contain unique sort inputs and cannot be empty if provided.

Member Of

roles query