Nils

Results 20 comments of Nils

Thank you for the quick response. I was updating my question as you were typing :) > It uses DotEnv (popular config approach) behind the scenes, so whatever works in...

The order of the `@Transactional` decorator is important in other ways too it seems. Using Nest's default GraphQL implementation, the following breaks: ```TypeScript // Transactional first, Query second @Transactional() @Query()...

I have a similar issue: my shells are not showing up if they are touching the constructor, but moving them anywhere else and it works fine (sky factory 4) Also,...

> can be used with class-transformer > > ``` > @InputType() > class FiltersInput { > @Field(() => String, { name: 'and', nullable: true }) > @Expose({ name: 'and' })...

I'm having the same problem. I have been recreating the container every time. Docker compose: ```yaml cxc-db: image: neo4j:4.4.17 hostname: db container_name: db ports: - "7474:7474" - "7687:7687" volumes: -...

Is this not what I am doing? I am importing the SUT (`SLUG_REGEX` in this case) and the `RunWithDrivine` method, then calling `RunWithDrivine()` and then the first `describe`. Could it...

I will try this tomorrow morning (in about 8 hours from now) and get back to you.

Just importing it does not work, but calling `RunWithDrivine` anywhere in the global setup does work, but this is not ideal.

Yes, I tried it as a first and later import, which does not work. In both scenarios I also tried it with actually calling the method, which does work.

> Related: [godotengine/godot#67719](https://github.com/godotengine/godot/issues/67719) https://devblogs.microsoft.com/dotnet/introducing-net-hot-reload/ > > It seems that .NET 6 and above supports it natively, and it does work currently(changes are applied), but only once. From local testing I...