Skip to main content

RoleSearchInput

No description

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

Fields

RoleSearchInput.page ● Int! non-null 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.offset ● Int! non-null scalar

Number of items to return per page.

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

RoleSearchInput.sortInputs ● [RoleSortInput!] list input

Sorting criteria for search 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.

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.

Member Of

roles query