Skip to main content

RoleDefinitionSearchInput

No description

input RoleDefinitionSearchInput {
page: Int!
offset: Int!
sortInputs: [RoleDefinitionSortInput!]
ids: [String!]
names: [String!]
}

Fields

RoleDefinitionSearchInput.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.

RoleDefinitionSearchInput.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.

RoleDefinitionSearchInput.sortInputs ● [RoleDefinitionSortInput!] 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.

RoleDefinitionSearchInput.ids ● [String!] list scalar

Filter by specific role definition identifiers.

Allows searching for specific role definitions using their unique UUID identifiers. Useful for retrieving multiple known role definitions in a single query.

RoleDefinitionSearchInput.names ● [String!] list scalar

Filter by specific role definition names.

Allows searching for specific role definitions using their unique names. Useful for retrieving multiple known role definitions in a single query.

Member Of

roleDefinitions query