File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,17 @@ path: /postgraphile/function-restrictions/
44title : Database Function Restrictions
55---
66
7- PostGraphile supports a wide range of PostgreSQL functions, the only major class
8- of functions we don't support currently are VARIADIC functions. We also do not
9- support overloaded functions because it's not currently possible to expose them
10- neatly over GraphQL.
7+ PostGraphile supports a wide range of PostgreSQL functions; however we do not
8+ support:
9+
10+ - VARIADIC functions
11+ - overloaded functions (because it's not currently possible to expose them
12+ neatly over GraphQL)
13+ - functions that return ` record ` without any more type information (because we
14+ don't know what columns that ` record ` will contain, and thus cannot convert it
15+ to GraphQL)
16+ - to solve this, change ` record ` to be the name of a composite type that
17+ you've defined with ` CREATE TYPE ` (or similar)
1118
1219### Thanks
1320
You can’t perform that action at this time.
0 commit comments