users_mutation_response

response of any mutation on the table "users"

Definition

type users_mutation_response {
  affected_rows: Int!
  returning: [users!]!
}

Fields

affected_rows

Int! - number of affected rows by the mutation

returning

[users!]! - data of the affected rows by the mutation

Example

users_mutation_response.json
{
  "affected_rows": 12345,
  "returning": [users]
}