Files
komp_ac/server/src/steel/docs/pushing_using_steel.txt
filipriec 9eb46cb5d3 kompAC
2025-07-25 11:59:18 +02:00

40 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

grpcurl -plaintext -d '{
"table_definition_id": 16,
"target_column": "idea_name",
"script": "(begin (define idea_name \"aaa\") idea_name)",
"description": "Set idea_name to Awesome Idea"
}' localhost:50051 KompAC.table_script.TableScript/PostTableScript
{
"id": "7"
}
grpcurl -plaintext -d '{
"profile_name": "script",
"table_name": "2025_berry",
"data": {
"idea_name": "sdfsfs",
"category": "Technology",
"impact_level": "High",
"is_feasible": "true",
"last_updated": "2025-03-11T12:34:56Z"
}
}' localhost:50051 KompAC.tables_data.TablesData/PostTableData
ERROR:
Code: InvalidArgument
Message: Validation failed for 'idea_name'. Expected: 'aaa', Received: 'sdfsfs'
grpcurl -plaintext -d '{
"profile_name": "script",
"table_name": "2025_berry",
"data": {
"idea_name": "aaa",
"category": "Technology",
"impact_level": "High",
"is_feasible": "true",
"last_updated": "2025-03-11T12:34:56Z"
}
}' localhost:50051 KompAC.tables_data.TablesData/PostTableData
{
"success": true,
"message": "Data inserted successfully",
"insertedId": "1"
}