For example we should override all resolvers and in those resolvers we should call method from plugin with sandboxed context. We could do something like following:
resolver(obj, args, context, info) {
return plugin.resolver(obj, args, context.getContext(plugin.name), info);
}