mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-04 02:34:52 +00:00
20 lines
561 B
JSON
20 lines
561 B
JSON
{
|
|
"name": "snippet_stats",
|
|
"description": "Snippet count by language for a given user — useful for BI dashboards",
|
|
"entity": "Snippet",
|
|
"select": [
|
|
{ "func": "count", "field": "id", "alias": "count" },
|
|
"language"
|
|
],
|
|
"groupBy": ["language"],
|
|
"orderBy": [{ "field": "count", "dir": "desc" }],
|
|
"limit": 50,
|
|
"params": [
|
|
{ "name": "userId", "type": "string", "required": true },
|
|
{ "name": "tenantId", "type": "string", "required": false }
|
|
],
|
|
"where": [
|
|
{ "field": "userId", "op": "eq", "param": "userId" }
|
|
]
|
|
}
|