ValuesetSearchInput
No description
input ValuesetSearchInput {
page: Int = 1
offset: Int = 12
createdAt: DateSearchInput
lastModifiedAt: DateSearchInput
ids: [Int!]
names: [String!]
type: ValuesetType
sortInputs: [ValuesetSortInput!]
term: String
termFields: [ValuesetTermField!]
termLanguages: [String!]
}
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.
ValuesetSearchInput.term ● String scalar
Free-text search term to filter by.
Performs a case-insensitive partial-match search across value set fields. Use this to find value sets that match a specific keyword or phrase.
ValuesetSearchInput.termFields ● [ValuesetTermField!] list enum
Fields to search in when using the term filter.
Specifies which fields should be included in the full-text search when a term is provided. Defaults to searching in all fields. Array must contain unique values and be non-empty when provided.
ValuesetSearchInput.termLanguages ● [String!] list scalar
Languages to search in when using the term filter.
Specifies which languages should be included in the full-text search when a term is provided. All languages are included by default. Array must contain unique values and be non-empty when provided.
Member Of
valuesets query