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
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)
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: