mirror of
https://github.com/kristoferssolo/Axium.git
synced 2025-10-21 16:00:34 +00:00
60 lines
1.1 KiB
JSON
60 lines
1.1 KiB
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "SELECT id, user_id, task, description, creation_date, completion_date, completed \n FROM todos WHERE id = $1 AND user_id = $2",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"ordinal": 0,
|
|
"name": "id",
|
|
"type_info": "Uuid"
|
|
},
|
|
{
|
|
"ordinal": 1,
|
|
"name": "user_id",
|
|
"type_info": "Uuid"
|
|
},
|
|
{
|
|
"ordinal": 2,
|
|
"name": "task",
|
|
"type_info": "Text"
|
|
},
|
|
{
|
|
"ordinal": 3,
|
|
"name": "description",
|
|
"type_info": "Text"
|
|
},
|
|
{
|
|
"ordinal": 4,
|
|
"name": "creation_date",
|
|
"type_info": "Date"
|
|
},
|
|
{
|
|
"ordinal": 5,
|
|
"name": "completion_date",
|
|
"type_info": "Date"
|
|
},
|
|
{
|
|
"ordinal": 6,
|
|
"name": "completed",
|
|
"type_info": "Bool"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Left": [
|
|
"Uuid",
|
|
"Uuid"
|
|
]
|
|
},
|
|
"nullable": [
|
|
false,
|
|
false,
|
|
false,
|
|
true,
|
|
false,
|
|
true,
|
|
true
|
|
]
|
|
},
|
|
"hash": "2cf3ce39a384a0e3adc9fc8079e57e244857c19ba3dbbebe5bdefc1a7d69ae0e"
|
|
}
|