You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 11, 2026. It is now read-only.
The example has a dot to much and does not work since the type does not fit
data:= []map[string]interface{}{
{
"uid": "uid(v)",
"email": "user@company1.io",
"name": "first name"
},
}
userByEmailQuery:=dqlx.Query(dqlx.EqFn("email", "user@company1.io")).
.Select(` // There shouldn't be a Dot here v as uid name `)
resp, err:=db.Mutation().
Query(userByEmailQuery). // Type does not implement 'DQLizer'Set(data).
Execute(ctx)
https://fenos.github.io/dqlx/docs/mutations/set
The example has a dot to much and does not work since the type does not fit