get_hex_project_runs
Retrieve project runs for a specific Hex project by providing the project ID, with options to limit and offset results for efficient data access.
Instructions
Get the runs for a specific project.
Args:
project_id: The UUID of the Hex project
limit: The number of runs to return
offset: The number of runs to skip
Returns:
JSON string with project runs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | No | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 25,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id"
],
"title": "get_hex_project_runsArguments",
"type": "object"
}