get_field_values
Retrieve distinct values from a database field to understand what data exists in a specific column, useful for data exploration and analysis.
Instructions
š [SAFE] Get distinct values for a field (useful for understanding what values exist in a column). May return many values for high-cardinality fields. Risk: None - read-only, but may return large results.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| fieldId | Yes | The ID of the field | 
Input Schema (JSON Schema)
{
  "properties": {
    "fieldId": {
      "description": "The ID of the field",
      "minimum": 1,
      "type": "integer"
    }
  },
  "required": [
    "fieldId"
  ],
  "type": "object"
}