Andrii Soluk
Andrii Soluk
The solution to this problem is: 1. Add annotation to skip mutation update. ```go func (Group) Fields() []ent.Field { return []ent.Field{ field.JSON("somefield", []Somefield{}).Annotations(entgql.Skip(entgql.SkipMutationUpdateInput)), } } ``` 2. Extend generated `UpdateGroupInput`...
@sudeshrshetty I don't think it can be fixed. ```panic: JavaScript error: IDBFactory.open() called in an invalid security context writeSync — wasm_exec.js:47 writeSync — wasm_exec.js:47``` Workaround for local development: https://stackoverflow.com/questions/58861509/indexdb-in-iframe-safari @sudeshrshetty...
You do not need a shutdown function to close the server. You can use the following code to achieve graceful shutdown. ``` // Create your own listener l, err :=...
I also had the same issue. Here is a solution: ``` document.addEventListener('click', (event) => { const tags = ['INPUT', 'TEXTAREA'] const focused = document.activeElement console.log(focused.tagName) if (focused && focused !==...