Magidoc

update_users
Mutation

update data of the table: "users"

Arguments

#

_set

sets the columns of the filtered rows to the given values

where

Non-null

filter the rows which have to be updated

Response

#

Returns users_mutation_response .

Example

#

    mutation ($_set: users_set_input, $where: users_bool_exp!) {
  update_users(_set: $_set, where: $where) {
    affected_rows
    returning {
      id
      name
      rocket
      timestamp
      twitter
    }
  }
}

  

3