We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Add this as a plugin to Postgraphile:
module.exports = builder => { builder.hook('build', build => { const oldPAR = build.pgPrepareAndRun; build.pgPrepareAndRun = (pgClient, text, values, ...rest) => { return oldPAR(pgClient, `/* HELLO! */ ${text}`, values, ...rest); } }); };