This is a helper crate for runnning the workflows of Shisho Cloud to write custom policies.
This is the utility for shisho-policy-sdk
which is a derive macro
to allow referring a graphql query as Rust structs.
``` use shishogqlderive::*;
...
query_path = "src/policies/organization/org_owners/query.graphql",
response_derives = "Debug, PartialEq"
)] pub struct Input;
...
```