mahald
mahald
Had the same issue since there still was an active publication (for all tables) on the Database. After deleting the Publication the problem is gone.
To utilize AutoMode, you could inject an interface and implement it using the HTTPClient for WASM and EntityFramework (or your preferred data retrieval method or an external API) for the...
one way to do it: https://github.com/SpaceShot/InteractiveAutoSample/pull/1
because of prerendering that happens first on the server then wasm is loaded and it's called again.
if you want to change this you either inject a service to detect prerendering or use the OnAfterRenderAsync hook instead of the OnInitlializedAsync Hook. Or disable prerendering. ``` protected override...
PS: The Template you are using is the "Global WASM" Template so everything is running in WASM and you can't use InteractiveServer. What you see is the prerendering that takes...
Just run into the same issue. Now just added a step to replace RootQueryType with Query and RootMutationType with Mutation in the File and all works fine. Would really be...
would be nice
If you're aiming to utilize WebAssembly (often referred to as WASM) in your application but you'd like users to see something (e.g., a loading spinner) while the WASM content is...
related to #1961. @briankwest can you please merge this?