graphile-settings 4.29.1 → 4.30.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -30,6 +30,10 @@ import type { GraphileConfig } from 'graphile-config';
|
|
|
30
30
|
* orderBy similarity — zero config, typo-tolerant)
|
|
31
31
|
* - ltree support (auto-detects ltree columns, LTree scalar with file-path syntax,
|
|
32
32
|
* containment/glob filters — within, ancestorOf, glob)
|
|
33
|
+
* - Aggregates (OPTIONAL — not included by default; add PgAggregatesPreset to extends to enable.
|
|
34
|
+
* Provides sum, avg, min, max, stddev, variance, distinctCount on connections,
|
|
35
|
+
* groupedAggregates with groupBy + having, orderBy relational aggregates,
|
|
36
|
+
* filter by relational aggregates — per-table opt-out via @behavior -aggregates)
|
|
33
37
|
*
|
|
34
38
|
* RELATION FILTERS:
|
|
35
39
|
* - Enabled via connectionFilterRelations: true
|
|
@@ -41,6 +41,10 @@ import { constructiveUploadFieldDefinitions } from '../upload-resolver';
|
|
|
41
41
|
* orderBy similarity — zero config, typo-tolerant)
|
|
42
42
|
* - ltree support (auto-detects ltree columns, LTree scalar with file-path syntax,
|
|
43
43
|
* containment/glob filters — within, ancestorOf, glob)
|
|
44
|
+
* - Aggregates (OPTIONAL — not included by default; add PgAggregatesPreset to extends to enable.
|
|
45
|
+
* Provides sum, avg, min, max, stddev, variance, distinctCount on connections,
|
|
46
|
+
* groupedAggregates with groupBy + having, orderBy relational aggregates,
|
|
47
|
+
* filter by relational aggregates — per-table opt-out via @behavior -aggregates)
|
|
44
48
|
*
|
|
45
49
|
* RELATION FILTERS:
|
|
46
50
|
* - Enabled via connectionFilterRelations: true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-settings",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.30.1",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "graphile settings",
|
|
6
6
|
"main": "index.js",
|
|
@@ -52,8 +52,9 @@
|
|
|
52
52
|
"graphile-config": "1.0.0",
|
|
53
53
|
"graphile-connection-filter": "^1.8.0",
|
|
54
54
|
"graphile-ltree": "^1.5.0",
|
|
55
|
+
"graphile-pg-aggregates": "^1.1.0",
|
|
55
56
|
"graphile-postgis": "^2.14.0",
|
|
56
|
-
"graphile-presigned-url-plugin": "^0.
|
|
57
|
+
"graphile-presigned-url-plugin": "^0.16.1",
|
|
57
58
|
"graphile-search": "^1.10.0",
|
|
58
59
|
"graphile-sql-expression-validator": "^2.10.0",
|
|
59
60
|
"graphile-upload-plugin": "^2.9.0",
|
|
@@ -85,5 +86,5 @@
|
|
|
85
86
|
"constructive",
|
|
86
87
|
"graphql"
|
|
87
88
|
],
|
|
88
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "97ec8e14f2b0855b0ee0bc732a082e1a91301b64"
|
|
89
90
|
}
|
|
@@ -30,6 +30,10 @@ import type { GraphileConfig } from 'graphile-config';
|
|
|
30
30
|
* orderBy similarity — zero config, typo-tolerant)
|
|
31
31
|
* - ltree support (auto-detects ltree columns, LTree scalar with file-path syntax,
|
|
32
32
|
* containment/glob filters — within, ancestorOf, glob)
|
|
33
|
+
* - Aggregates (OPTIONAL — not included by default; add PgAggregatesPreset to extends to enable.
|
|
34
|
+
* Provides sum, avg, min, max, stddev, variance, distinctCount on connections,
|
|
35
|
+
* groupedAggregates with groupBy + having, orderBy relational aggregates,
|
|
36
|
+
* filter by relational aggregates — per-table opt-out via @behavior -aggregates)
|
|
33
37
|
*
|
|
34
38
|
* RELATION FILTERS:
|
|
35
39
|
* - Enabled via connectionFilterRelations: true
|
|
@@ -44,6 +44,10 @@ const upload_resolver_1 = require("../upload-resolver");
|
|
|
44
44
|
* orderBy similarity — zero config, typo-tolerant)
|
|
45
45
|
* - ltree support (auto-detects ltree columns, LTree scalar with file-path syntax,
|
|
46
46
|
* containment/glob filters — within, ancestorOf, glob)
|
|
47
|
+
* - Aggregates (OPTIONAL — not included by default; add PgAggregatesPreset to extends to enable.
|
|
48
|
+
* Provides sum, avg, min, max, stddev, variance, distinctCount on connections,
|
|
49
|
+
* groupedAggregates with groupBy + having, orderBy relational aggregates,
|
|
50
|
+
* filter by relational aggregates — per-table opt-out via @behavior -aggregates)
|
|
47
51
|
*
|
|
48
52
|
* RELATION FILTERS:
|
|
49
53
|
* - Enabled via connectionFilterRelations: true
|