ValuesetSearchInput
No description
input ValuesetSearchInput {
page: Int
offset: Int
createdAt: DateSearchInput
lastModifiedAt: DateSearchInput
ids: [Int!]
names: [String!]
type: ValuesetType
sortInputs: [ValuesetSortInput!]
}
Fields
ValuesetSearchInput.page
● Int
scalar
Page number for pagination, starting from 1. Used to navigate through multiple pages of results when the total number of value sets exceeds the offset limit. Must be a positive integer (minimum: 1).
ValuesetSearchInput.offset
● Int
scalar
Number of value sets to return per page. Controls the size of each page in the paginated response to manage data volume and performance. Must be between 1 and 100 items per page.
ValuesetSearchInput.createdAt
● DateSearchInput
input
Filter value sets by their creation date range. Useful for finding recently created value sets or tracking configuration changes over time.
ValuesetSearchInput.lastModifiedAt
● DateSearchInput
input
Filter value sets by their last modification date range. Helpful for identifying recently updated configurations or tracking maintenance activities.
ValuesetSearchInput.ids
● [Int!]
list scalar
Filter by specific value set identifiers. Provide an array of numeric IDs to retrieve only those specific value sets, useful for bulk operations or targeted queries.
ValuesetSearchInput.names
● [String!]
list scalar
Filter by specific value set names. Provide an array of name strings to retrieve value sets with matching names, helpful for configuration management and system integration.
ValuesetSearchInput.type
● ValuesetType
enum
Filter by value set type classification. SYSTEM types are managed automatically by the system, while CUSTOM types can be modified by authorized users.
ValuesetSearchInput.sortInputs
● [ValuesetSortInput!]
list input
Sorting criteria for organizing search results. Supports multiple sort fields with different orders to achieve complex result organization.
Member Of
valuesets
query