Jason Gunawan Limantoro
Jason Gunawan Limantoro
Consider this example, ```ts const agent = supertest.agent(expressApp); const response = await agent.post("/graphql").send({ key: "value" }); ``` The type of `response.body` is `any`. Ideally, we should be able to provide...
Add support for a schema with javascript extensions, e.g. ```javascript // user.js export default gql` type { createUser(CreateUserInput!): User! } ` ```
It seems that when I'm trying to use the headless feature, i.e. ```jsonc // backstop.json { "debug": false, "debugWindow": false } ``` and use the `puppeteer` engine ```jsonc // backstop.json...
Without the plugin, the deployed functions work well. However, after enabling the plugin, although it's significantly smaller, invoking the API yields the error `module.require is not a function`, yielding 5xx...
When doing a `POST` request to create a new nested resource, its foreign key is parsed as string, as opposed to integer. This causes the parent to not recognize its...
Function `getRepository` from [src/decorators/InjectRepository.ts](https://github.com/typeorm/typeorm-typedi-extensions/blob/master/src/decorators/InjectRepository.ts) seems to be problematic. I dealt with it like this: ```ts // UserRepository.ts import { EntityRepository, Repository } from 'typeorm'; @Service() @EntityRepository(User) export class UserRepository extends...
## Describe the bug Using Yarn v2 workspace (**node_modules linker**, not PnP), the build will fail if `heroku-prebuild` is defined in the root `package.json` ## To Reproduce Steps to reproduce...
For example, I have the following Config root ```go var RootConfig Root type Root struct { Http map[string]HttpConfig `yaml:"http" env:"HTTP"` } type HttpConfig struct { Host string `yaml:"host"` TimeoutMs int...
How does one hide the `/metrics` from the public internet? And once it's hidden, what's the usual practice for Grafana/Grafana Cloud to scrape this hidden/protected endpoint? I'm asking because I...