We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add a function, like allowExplain, that governs whether a request may use arbitrary operations versus only persisted operations.
allowExplain
In development it's common to want to send arbitrary queries from GraphiQL whilst also enforcing Persisted Operations from the application.
app.use(postgraphile(DATABASE_URL, SCHEMAS, { allowUnpersistedOperation(req) { return process.env.NODE_ENV === "development" && req.headers.referer.endsWith("/graphiql"); } });
(Should we pass the operation too, I wonder?)
None
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature description
Add a function, like
allowExplain
, that governs whether a request may use arbitrary operations versus only persisted operations.Motivating example
In development it's common to want to send arbitrary queries from GraphiQL whilst also enforcing Persisted Operations from the application.
(Should we pass the operation too, I wonder?)
Breaking changes
None
The text was updated successfully, but these errors were encountered: