Hello I am new to postgraphile, I would like to test adding a new attribute user.email
to pgSettings on every request. I don't want to use jwt for now.
Here is my .postgraphilerc.js
module.exports = {
options: {
connection: process.env.DATABASE_URL,
schema: ['app_public', 'public', 'app_hidden'],
port: 5433,
appendPlugins:
'postgraphile-plugin-connection-filter,postgraphile-plugin-nested-mutations,@graphile-contrib/pg-simplify-inflector,@graphile-contrib/pg-many-to-many',
watch: true,
dynamicJson: true,
enhanceGraphiql: true,
extendedErrors: 'hint,detail,errcode',
graphileBuildOptions: {
},
ignoreRBAC: false,
showErrorStack: 'json',
legacyRelations: 'omit',
pgDefaultRole: 'database_visitor',
pgSettings: async req => (
{
'user.email': req?.session?.passport?.user ?? '[email protected]',
}),
},
};
I would like to test a simple query using graphiql. Where can pass the req object in the graphical interface ?
Here is my query
query Users {
appUsers {
nodes {
email
id
}
}
}
Should I write something in the headers section ?
I ended up passing parameters in the headers.
In graphiql in the
request headers
boxLet me know if there are better practices