OBJECT
mutation_root
mutation root
link GraphQL Schema definition
- type mutation_root {
- # delete data from the table: "blocks"
- #
- # Arguments
- # where: filter the rows which have to be deleted
- blocks_bool_exp!): blocks_mutation_response ( :
- # delete single row from the table: "blocks"
- #
- # Arguments
- # blockNumber: [Not documented]
- Int!): blocks ( :
- # delete data from the table: "transfers"
- #
- # Arguments
- # where: filter the rows which have to be deleted
- transfers_bool_exp!): transfers_mutation_response ( :
- # delete single row from the table: "transfers"
- #
- # Arguments
- # blockNumber: [Not documented]
- # logIndex: [Not documented]
- # transactionIndex: [Not documented]
- (
- Int!, :
- Int!, :
- Int! :
- ): transfers
- # insert data into the table: "blocks"
- #
- # Arguments
- # objects: the rows to be inserted
- # on_conflict: upsert condition
- (
- blocks_insert_input!]!, : [
- blocks_on_conflict :
- ): blocks_mutation_response
- # insert a single row into the table: "blocks"
- #
- # Arguments
- # object: the row to be inserted
- # on_conflict: upsert condition
- (
- blocks_insert_input!, :
- blocks_on_conflict :
- ): blocks
- # insert data into the table: "transfers"
- #
- # Arguments
- # objects: the rows to be inserted
- # on_conflict: upsert condition
- (
- transfers_insert_input!]!, : [
- transfers_on_conflict :
- ): transfers_mutation_response
- # insert a single row into the table: "transfers"
- #
- # Arguments
- # object: the row to be inserted
- # on_conflict: upsert condition
- (
- transfers_insert_input!, :
- transfers_on_conflict :
- ): transfers
- # update data of the table: "blocks"
- #
- # Arguments
- # _inc: increments the numeric columns with given value of the
- # filtered values
- # _set: sets the columns of the filtered rows to the given values
- # where: filter the rows which have to be updated
- (
- blocks_inc_input, :
- blocks_set_input, :
- blocks_bool_exp! :
- ): blocks_mutation_response
- # update single row of the table: "blocks"
- #
- # Arguments
- # _inc: increments the numeric columns with given value of the
- # filtered values
- # _set: sets the columns of the filtered rows to the given values
- # pk_columns: [Not documented]
- (
- blocks_inc_input, :
- blocks_set_input, :
- blocks_pk_columns_input! :
- ): blocks
- # update multiples rows of table: "blocks"
- #
- # Arguments
- # updates: updates to execute, in order
- blocks_updates!]!): [blocks_mutation_response] ( : [
- # update data of the table: "transfers"
- #
- # Arguments
- # _inc: increments the numeric columns with given value of the
- # filtered values
- # _set: sets the columns of the filtered rows to the given values
- # where: filter the rows which have to be updated
- (
- transfers_inc_input, :
- transfers_set_input, :
- transfers_bool_exp! :
- ): transfers_mutation_response
- # update single row of the table: "transfers"
- #
- # Arguments
- # _inc: increments the numeric columns with given value of the
- # filtered values
- # _set: sets the columns of the filtered rows to the given values
- # pk_columns: [Not documented]
- (
- transfers_inc_input, :
- transfers_set_input, :
- transfers_pk_columns_input! :
- ): transfers
- # update multiples rows of table: "transfers"
- #
- # Arguments
- # updates: updates to execute, in order
- transfers_updates!]!): [transfers_mutation_response] ( : [
- }
link Require by
This element is not required by anyone