@hubql/nestjs
v0.0.8
Published
An API client with Hubql for your NestJS server
Downloads
66
Readme
Hubql Client for NestJS
Example usage of Hubql Client in a NestJS project.
Installation
npm install @hubql/nestjs
Usage
Pass OpenAPI JSON URL to your hubqlClient
import { hubqlClient } from '@hubql/nestjs'
app.use(
'/hubql',
hubqlClient({
settings: {},
openAPIDoc: {
url: '/swagger',
},
})
)