I am trying to deploy my graphql api to aws lambda . I am using neo4j graphql library where I am facing authentication error. API is working fine if I not add authentication. However on
extend type VM @auth(rules:[
{operations: [READ,CREAT...
I have defined a type :
type NFDAdmin {
user_id: ID! @unique
user_name: String!
email: String!
phone: String!
password: String! @private
}
This has automatically created several mutations like 'cre...