Tvildo

Results 7 comments of Tvildo

Hey, Is there a way to do manual query invalidation like: https://react-query.tanstack.com/guides/invalidations-from-mutations ? It will be nice to be able to refresh specific query or queries after mutation is done....

Can you paste `example code` of how to do what he mentioned ?

@timdeschryver I see one problem with that approach, if I have parameters in 'persons' query I need exactly those parameter values for refreshQuery, because it is cache key as mentioned...

Hello. I am using `local_file` to generate ansible inventory from template like this: **ansible.hosts** ``` [workers] %{ for worker in workers ~} ${worker.name} ansible_host=${worker.private_ip} ansible_user=${ssh_user} %{ endfor ~} ``` **Resource...

Workaround: Fix Symlinks every time you mount or download /etc/letsencrypt folder by running this python code: ```python import configparser import os class CertManager: letsencrypt_dir: str def __init_(self): self.letsencrypt_dir = "/etc/letsencrypt"...

Following algorithm works well for me: 1. Detect and replace document separator with SPECIAL_TOKEN="YAMLSEPARATOR" 2. Split string on special token 3. We need to remove invalid strings which can contain...

Any news on this ?