get_app_field
Retrieve values of a specific field from a Qlik Sense app with pagination, wildcard search, and case-sensitive matching options.
Instructions
Return values of a single field from app with pagination and wildcard search (supports * and %).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_id | Yes | Application GUID | |
case_sensitive | No | Case sensitive matching for search_string | |
field_name | Yes | Field name | |
limit | No | Max values to return (default: 10, max: 100) | |
offset | No | Offset for pagination (default: 0) | |
search_number | No | Wildcard numeric search mask (* and % supported) | |
search_string | No | Wildcard text search mask (* and % supported), case-insensitive by default |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"description": "Application GUID",
"type": "string"
},
"case_sensitive": {
"default": false,
"description": "Case sensitive matching for search_string",
"type": "boolean"
},
"field_name": {
"description": "Field name",
"type": "string"
},
"limit": {
"default": 10,
"description": "Max values to return (default: 10, max: 100)",
"type": "integer"
},
"offset": {
"default": 0,
"description": "Offset for pagination (default: 0)",
"type": "integer"
},
"search_number": {
"description": "Wildcard numeric search mask (* and % supported)",
"type": "string"
},
"search_string": {
"description": "Wildcard text search mask (* and % supported), case-insensitive by default",
"type": "string"
}
},
"required": [
"app_id",
"field_name"
],
"type": "object"
}