We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It could useful to be able to change the query dependant on conditions and have the return type reflect this.
whenGql :: Boolean -> query -> Maybe res could be uses when queries are not always needed
whenGql :: Boolean -> query -> Maybe res
ifGql :: Boolean -> queryLeft -> queryRight -> Either resLeft resRight when different queries are needed depending on an condition.
ifGql :: Boolean -> queryLeft -> queryRight -> Either resLeft resRight
This would be useful if we refactor OA UI tables to use Hasura.
Low priority
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It could useful to be able to change the query dependant on conditions and have the return type reflect this.
whenGql :: Boolean -> query -> Maybe res
could be uses when queries are not always neededifGql :: Boolean -> queryLeft -> queryRight -> Either resLeft resRight
when different queries are needed depending on an condition.This would be useful if we refactor OA UI tables to use Hasura.
Low priority
The text was updated successfully, but these errors were encountered: