We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbab379 commit b247c38Copy full SHA for b247c38
api/src/index.ts
@@ -62,6 +62,14 @@ function createOptions() {
62
postgraphileOptions.jwtSecret = "DEV";
63
postgraphileOptions.showErrorStack = "json" as const;
64
postgraphileOptions.extendedErrors = ["hint", "detail", "errcode"];
65
+
66
+ postgraphileOptions.graphileBuildOptions = {
67
+ connectionFilterAllowedOperators: ["includesInsensitive"],
68
+ connectionFilterAllowedFieldTypes: ["String"],
69
+ connectionFilterComputedColumns: false,
70
+ connectionFilterSetofFunctions: false,
71
+ connectionFilterArrays: false,
72
+ };
73
}
74
return postgraphileOptions;
75
0 commit comments