desmap
desmap
no it's not disabled. you can have transparency when not in full screen and when not in nvim. example: tmux in a non full screen setting is transparent. fwiw other...
@kchibisov however it's not working or even worse or it's only partially working while other terminals don't have this problem. I don't think you should tinker around on on the...
+1, `~/.config` is the standard for dotfiles and it makes it also much easier to git your dotfiles, hence it would be awesome if you set this as the default
Just tested it: Once a pure class method which is not exposed/decorated as GraphQL API in a `@Resolver` decorated class, the `@Ctx` injection in that method doesn't work anymore, right....
What would be nice though: a way to easily inject Apollo's context into the entire class without the need to inject it manually in every class method. Is this possible...
> See the scoped containers example - there you create a fresh container for each "request", you put the context in the container and then you can inject that to...
Example code to the previous post: here the dependency I inject: ``` @Service() export default class DbClient { connection async connect(dbName: string) { if (!this.connection) { this.connection = await MongoClient.connect(...
@wonbyte awesome and simple idea, thanks! It's working and is quite elegant. Now I realize that the db-name I use depends on the hostname of the request. I could now...
Ok, fyi, my current design: It features DRY, DI and Apollo Context: 1. Everything is declared in the to be DIed class DbClient. Everything means connection but also shortcuts to...
Thanks. I saw that I can create a custom validator, so this should do the job for now. > I think this is the intended behaviour, most of the decorator...