[GraphQL error]: Message: There is no procedure with the name `apoc.util.validate` registered for this database instance

Hi

So I got this error [GraphQL error]: Message: There is no procedure with the name apoc.util.validate registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed. while trying to integrate auth directive on my GraphQL API.

Here's my schema definition:
`type User {
id: ID! @id
firstName: String!
lastName: String!
username: String!
profilePicture: String
}

extend type User @auth(rules: [{ operations: [UPDATE], isAuthenticated: true }])`

I want some authentication and authorization check when I call the updateUsers mutation, but I always get the above error.

Exact same problem for me!

You'll need to install the APOC library