Skip to content

Commit

Permalink
add stored procedures configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
codingkarthik committed Jun 28, 2024
1 parent 0241dfe commit 5f036ae
Showing 1 changed file with 58 additions and 1 deletion.
59 changes: 58 additions & 1 deletion static/configuration.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"mssql_connection_string": {
"variable": "CONNECTION_URI"
"variable": "CONNECTION_URI"
},
"metadata": {
"tables": {
Expand Down Expand Up @@ -843,6 +843,63 @@
"description": null
}
},
"storedProcedures": {
"GetCustomerDetailsWithTotalPurchases": {
"name": "GetCustomerDetailsWithTotalPurchases",
"schema": "dbo",
"arguments": {
"CustomerId": {
"name": "CustomerId",
"type": "int",
"nullable": "nullable",
"isOutput": false,
"description": null
},
"Phone": {
"name": "Phone",
"type": "varchar",
"nullable": "nullable",
"isOutput": false,
"description": null
}
},
"returns": {
"CustomerId": {
"name": "CustomerId",
"type": "int",
"nullable": "nonNullable",
"description": null
},
"Phone": {
"name": "Phone",
"type": "varchar",
"nullable": "nonNullable",
"description": null
},
"TotalPurchases": {
"name": "TotalPurchases",
"type": "int",
"nullable": "nonNullable",
"description": null
}
},
"description": null
},
"ReturnOne": {
"name": "ReturnOne",
"schema": "dbo",
"arguments": {},
"returns": {
"result": {
"name": "result",
"type": "int",
"description": null,
"nullable": "nullable"
}
},
"description": null
}
},
"aggregateFunctions": {
"bigint": {
"APPROX_COUNT_DISTINCT": {
Expand Down

0 comments on commit 5f036ae

Please sign in to comment.