likwid/backend/.sqlx/query-fdfe11a59054df6111a7833043bf8cfb772c5897d1aa9c25ccad0579945e74f2.json
Marco Allegretti 910a6465f2 Initial commit: Likwid governance platform
- Backend: Rust/Axum with PostgreSQL, plugin architecture
- Frontend: Astro with polished UI
- Voting methods: Approval, Ranked Choice, Schulze, STAR, Quadratic
- Features: Liquid delegation, transparent moderation, structured deliberation
- Documentation: User and admin guides in /docs
- Deployment: Docker/Podman compose files for production and demo
- Demo: Seeded data with 3 communities, 13 users, 7 proposals

License: AGPLv3
2026-01-27 17:21:58 +01:00

52 lines
1.4 KiB
JSON

{
"db_name": "PostgreSQL",
"query": "SELECT \n COUNT(*) FILTER (WHERE position = 'strongly_support') as strongly_support,\n COUNT(*) FILTER (WHERE position = 'support') as support,\n COUNT(*) FILTER (WHERE position = 'neutral') as neutral,\n COUNT(*) FILTER (WHERE position = 'oppose') as oppose,\n COUNT(*) FILTER (WHERE position = 'strongly_oppose') as strongly_oppose,\n COUNT(*) as total\n FROM proposal_positions\n WHERE proposal_id = $1",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "strongly_support",
"type_info": "Int8"
},
{
"ordinal": 1,
"name": "support",
"type_info": "Int8"
},
{
"ordinal": 2,
"name": "neutral",
"type_info": "Int8"
},
{
"ordinal": 3,
"name": "oppose",
"type_info": "Int8"
},
{
"ordinal": 4,
"name": "strongly_oppose",
"type_info": "Int8"
},
{
"ordinal": 5,
"name": "total",
"type_info": "Int8"
}
],
"parameters": {
"Left": [
"Uuid"
]
},
"nullable": [
null,
null,
null,
null,
null,
null
]
},
"hash": "fdfe11a59054df6111a7833043bf8cfb772c5897d1aa9c25ccad0579945e74f2"
}