Greg Pstrucha
Greg Pstrucha
Currently, to write a field guard, you have to implement an entire struct and implement single-function trait for it: ``` #[derive(SimpleObject)] struct Query { /// Only allow Admin #[graphql(guard =...
Is it possible to have an InputObject validator that runs always whenever specified InputObject is used? Specific example: ``` #[derive(InputObject)] pub struct ProductOrder { pub product_id: String, pub product_quantity: i32...
Hey! We started hitting pretty long cargo check times as our project grows. I've seen previous thread about this ([783](https://github.com/async-graphql/async-graphql/issues/783)) but regardless of short term fixes, we are expecting our...
Hey, I was looking at whether it's possible to expose SDL with fields sorted in them. I stumbled upon this [commit](https://github.com/async-graphql/async-graphql/commit/8011b9a1206420cb5811f82e647bfd68826e6e0e#diff-9bba8f996c86a603bbba1527207df9b6c33f413d0483bcd009d983083aff9100) That allows sorting by fields' names when exporting SDL...
Hello! I was curious whether it's a bug, a design choice, or my incorrect usage of the framework and would definitely appreciate any help and guidance on this one! I'm...
Currently struct parsing will be flaky if unions are part of struct. The reason for that is that we don't try to match against `?(..content..)`, and that's how unions are...
### What does this PR do? I spawn OpenCode directly on my dev servers in $HOME. I then try to attach to them from any of my machine, and because...
### Description opencode attach --dir does not work correctly when you try to use it with a remote server. It performs client side validation of whether a directory is valid...