We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
data := []map[string]interface{}{ { "uid": "uid(v)", "email": "user@company1.io", "name": "first name" }, } userByEmailQuery := dqlx.Query(dqlx.EqFn("email", "user@company1.io")). .Select(` v as uid name `) resp, err := db.Mutation(). Query(userByEmailQuery). Set(data). Execute(ctx)
The above example does not work, as userByEmailQuery is of type dqlx.QueryBuilder and Query() needs dqlx.DQLizer
userByEmailQuery
dqlx.QueryBuilder
dqlx.DQLizer
The text was updated successfully, but these errors were encountered:
-Adding the debug points for mutation fenos#2
6954f80
No branches or pull requests
The above example does not work, as
userByEmailQuery
is of typedqlx.QueryBuilder
and Query() needsdqlx.DQLizer
The text was updated successfully, but these errors were encountered: