Added:
- Explicit resolver for `notification_templates`. This allows adding permission checking like this if you override the resolver on your `Query` class:
python
staticmethod
view_permission_required(NotificationTemplate)
def resolve_notification_templates(parent, info, **kwargs):
return django_ilmoitin_schema.Query.resolve_notification_templates(
parent, info, **kwargs
)