How can access be granted to a given user role, enabling them to retrieve (match) records if the labels contain a specific pattern in Neo4j?
While impersonating as a user and managing existing labels like Test, Test_1, and Test_2 in the database, is there a way to configure grant permissions ensuring that records with labels containing the prefix 'Test' are accessible to the user?
When granting permissions based on node label / relationship type, you can specify all labels / types with
*, or you can specify a list of label / type identifiers. But you can’t specify a pattern that would match the beginning of the label / type name.See the docs.