Rishichandra Wawhal

Results 22 issues of Rishichandra Wawhal

Allow setting boolean conditions (like in permissions). One should be able to say things like *trigger the webhook only if `is_cancelled=false`* **Use case** I came across this while building an...

k/enhancement
c/server
triage/2-needs-rfc
a/eventing
a/eventing/data-triggers
t/gql-services
s/triaged

Thoughts @0x777 @rikinsk @coco98? Can be achieved with views. But it would be very comfortable if we could set permissions such that one can make "only" aggregate queries. Makes the...

c/console
c/server
k/ideas
p/high
c/v3-engine

### Is your proposal related to a problem? Motivation: We often find ourselves making queries to the database in the beginning of almost every action for verifying things like: -...

k/enhancement
c/actions
a/authz
t/gql-services
k/v3-beta

It is for the console. We need the triggers on both browse-rows page (for invoking event triggers manually) and modify page for listing down the triggers. It'll be ideal if...

c/server
a/eventing/data-triggers

Comes from @FluorescentHallucinogen Check out code-exporter [here](https://www.onegraph.com/graphiql).

These are the bunch of cases where codegen does incorrect things: 1. If the derived action returns an object but the parent operation returns a list, it causes runtime error....

bug

When an action is derived from a Hasura operation, the generated code does not send request headers while delegating to the parent operation.

We can generate: ```js const { input: { arg1, arg2 }, session_variables, action: { name: actionName } } = req.body; ``` Currently we just generate: ```js const { arg1, arg2...

Actions support postgres scalars now (https://github.com/hasura/graphql-engine/pull/4333). This causes a problem in typescript codegen because graphql-code-generator expects the SDL to be complete in itself. Currently we have a hack to make...