Using @auth and @custom dql?

Hello,
I am using graphql schema with types using @auth RBAC rules for queries. However when I want to use @custom DQL query (even when it returns the same type), the acl rules are not used.
So i can get filtered results with queryUser{} but all records with my custom listUsers{} (even when the result should be the same).
I cannot use custom @remote type (like mentioned here: WIP: Auth rules custom DQL query ) because as I understand it is not implemented, as I get the error cannot have both @auth and @remote directive
Any hints how can I use RBAC for custom dql queries?