Skip to content

Commit

Permalink
fix(ignoreIndexes): add to interfaces (#918)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie authored Nov 22, 2018
1 parent ec02c78 commit f3610d2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ export interface PostGraphileOptions {
// everything.
// The default is `true`, in v5 the default will change to `false`.
ignoreRBAC?: boolean;
// Set false (recommended) to exclude filters, orderBy, and relations that
// would be expensive to access due to missing indexes. Changing this from
// true to false is a breaking change, but false to true is not, so we
// recommend you start with it set to `false`.
// The default is `true`, in v5 the default may change to `false`.
ignoreIndexes?: boolean;
// By default, tables and functions that come from extensions are excluded
// from the generated GraphQL schema as general applications don't need them
// to be exposed to the end user. You can use this flag to include them in
Expand Down

0 comments on commit f3610d2

Please sign in to comment.