Zia Zon

Results 18 comments of Zia Zon

here's how I did this: ```typescript export const existsQuery = (builder: SelectQueryBuilder) => `exists (${builder.getQuery()})`; ``` So then later I can do something like: ``` manager .getRepository(Role) .createQueryBuilder('role') .where( existsQuery(...

A use case that I've seen the need for newman runs to be able to modify (via session maybe?) variables, is where requests are chained. Say CRUD operations, we create...

> > A use case that I've seen the need for newman runs to be able to modify (via session maybe?) variables, is where requests are chained. Say CRUD operations,...

related issue? https://github.com/postmanlabs/newman/issues/2192

the two referenced issues don't help with the above situation where the options are on one of the command groups being specified in the collection. For example: ```python @click.group() @click.option(...

I'm also looking for this. In the use case I have I'm seeking to host our platform docs at a sub path (not subdomain) like `.com/docs` and this is a...

@Parasin that worked perfectly as well. finally after a year or something of dealing with this problem heh... not the most ideal fix but at least there is a fix.