mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
This commit is contained in:
parent
c843f787fe
commit
f993a6c907
@ -16,6 +16,7 @@ RETURNS boolean AS $$
|
||||
);
|
||||
$$ LANGUAGE sql STABLE;
|
||||
```
|
||||
|
||||
and make a query like:
|
||||
|
||||
```
|
||||
@ -39,6 +40,7 @@ Read more about the session argument for computed fields in the [docs](https://h
|
||||
- console: avoid count queries for large tables (#4692)
|
||||
- console: add read replica support section to pro popup (#4118)
|
||||
- console: allow modifying default value for PK (fix #4075) (#4679)
|
||||
- console: fix checkbox for forwarding client headers in actions (#4595)
|
||||
- cli: list all avialable commands in root command help (fix #4623)
|
||||
- docs: add section on actions vs. remote schemas to actions documentation (#4284)
|
||||
- docs: fix wrong info about excluding scheme in CORS config
|
||||
@ -107,6 +109,7 @@ The `internal` field for action errors is improved with more debug information.
|
||||
`response` and `error` fields instead of just `webhook_response` field.
|
||||
|
||||
Before:
|
||||
|
||||
```json
|
||||
{
|
||||
"errors": [
|
||||
@ -127,7 +130,9 @@ Before:
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
After:
|
||||
|
||||
```json
|
||||
{
|
||||
"errors": [
|
||||
@ -191,6 +196,7 @@ ENV vars can now be read from .env file present at the project root directory. A
|
||||
```
|
||||
hasura console --envfile production.env
|
||||
```
|
||||
|
||||
The above command will read ENV vars from `production.env` file present at the project root directory.
|
||||
|
||||
(close #4129) (#4454)
|
||||
|
@ -63,8 +63,7 @@ const AddAction = ({
|
||||
dispatch(dispatchNewHeaders(hs));
|
||||
};
|
||||
|
||||
const toggleForwardClientHeaders = e => {
|
||||
e.preventDefault();
|
||||
const toggleForwardClientHeaders = () => {
|
||||
dispatch(toggleFCH());
|
||||
};
|
||||
|
||||
|
@ -32,15 +32,12 @@ const HandlerEditor = ({
|
||||
/>
|
||||
</h2>
|
||||
<div className={`${styles.add_mar_bottom_mid}`}>
|
||||
<label
|
||||
className={`${styles.add_mar_right} ${styles.cursorPointer}`}
|
||||
onClick={toggleForwardClientHeaders}
|
||||
>
|
||||
<label className={`${styles.add_mar_right} ${styles.cursorPointer}`}>
|
||||
<input
|
||||
type="checkbox"
|
||||
checked={forwardClientHeaders}
|
||||
readOnly
|
||||
className={`${styles.add_mar_right_small}`}
|
||||
onChange={toggleForwardClientHeaders}
|
||||
className={`${styles.add_mar_right_small} ${styles.cursorPointer}`}
|
||||
/>
|
||||
Forward client headers to webhook
|
||||
</label>
|
||||
|
@ -74,8 +74,7 @@ const ActionEditor = ({
|
||||
dispatch(dispatchNewHeaders(hs));
|
||||
};
|
||||
|
||||
const toggleForwardClientHeaders = e => {
|
||||
e.preventDefault();
|
||||
const toggleForwardClientHeaders = () => {
|
||||
dispatch(toggleFCH());
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user