mutation proof of concept

client can now send mutations and server properly executes them
TODO: implement query execution, add auth, add storage
This commit is contained in:
2026-04-21 23:07:55 -05:00
parent c834c11bc8
commit 8092488b29
8 changed files with 112 additions and 26 deletions
+2
View File
@@ -10,9 +10,11 @@ type AuthCtx struct {
type QueryCtx struct {
DB *gorm.DB
AuthCtx *AuthCtx
Params map[string]interface{}
}
type MutationCtx struct {
DB *gorm.DB
AuthCtx *AuthCtx
Params map[string]interface{}
}