Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(arrays): fix arrays of intervals, etc #405

Merged
merged 1 commit into from
Feb 27, 2019
Merged

fix(arrays): fix arrays of intervals, etc #405

merged 1 commit into from
Feb 27, 2019

Conversation

benjie
Copy link
Member

@benjie benjie commented Feb 27, 2019

Fixes #390

This is a bugfix, but people may be relying on this broken behaviour. If they are, they can opt out of this fix via disableIssue390Fix flag:

CLI: add to .postgraphilerc.js:

module.exports = {
  options: {
    graphileBuildOptions: {
      disableIssue390Fix: true
    }
  }
}

Library:

app.use(postgraphile(DB, SCHEMAS, {
  graphileBuildOptions: {
    disableIssue390Fix: true
  }
}));

@benjie benjie merged commit cc3a6b1 into master Feb 27, 2019
@benjie benjie deleted the issue-390 branch February 27, 2019 09:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

interval[] column has String input type
1 participant