Zuplo logo
Back to Changelog
May 5, 2023
2 min read

Open API from ZuploContext

The context.route property on the ZuploContext object now exposes the raw Open API operation JSON for use in handlers or policies.

export async function myHandler(request: ZuploRequest, context: ZuploContext) {
  const raw = context.route.raw();
  return raw;
}