-
Notifications
You must be signed in to change notification settings - Fork 0
/
postgraphile.tags.jsonc
37 lines (37 loc) · 1.18 KB
/
postgraphile.tags.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"version": 1,
"config": {
/*
* There can be entries here for:
*
* - `class`: for tables, composite types, views and materialized views
* - `attribute`: for columns/attributes (of any 'class' type)
* - `constraint`: for table constraints
* - `procedure`: for functions/procedures
*/
// "class": {
// /*
// * The next level describes the named type. We've just used the table
// * name `"post"` but it could be `"my_schema.post"` if you have multiple
// * tables with the same name and you don't want this rule to apply to
// * all of them.
// */
// "post": {
// /*
// * This will override the description sourced from the PostgreSQL COMMENT.
// */
// "description": "A post within our forum.",
// /*
// * Add tags specific to the 'post' table here. You can omit this if you
// * don't want to add any tags.
// */
// "tags": {},
// /*
// * We've added a shortcut to class-types so you can tag/describe
// * columns at the same time of the class.
// */
// "attribute": {}
// }
// }
}
}