diff --git a/src/graphql/gravity_messages_by_address.graphql b/src/graphql/gravity_messages_by_address.graphql index d5eb21f41c..fe11ed78ae 100644 --- a/src/graphql/gravity_messages_by_address.graphql +++ b/src/graphql/gravity_messages_by_address.graphql @@ -1,5 +1,5 @@ query GetGravityMessagesByAddress($address: String, $limit: bigint = 50, $offset: bigint = 0) { - messagesByAddress: gravity_messages_by_address(args: {receiver: $address, limit: $limit, offset: $offset}) { + messagesByAddress: gravity_messages_by_address(args: {receiver_addr: $address, limit: $limit, offset: $offset}) { transaction { height hash diff --git a/src/graphql/types.tsx b/src/graphql/types.tsx index 0ac26fc99c..b552d8a5ff 100644 --- a/src/graphql/types.tsx +++ b/src/graphql/types.tsx @@ -3586,7 +3586,7 @@ export type Gov_Params_Variance_Fields = { export type Gravity_Messages_By_Address_Args = { limit?: Maybe; offset?: Maybe; - receiver?: Maybe; + receiver_addr?: Maybe; }; /** columns and relationships of "inflation" */ @@ -6269,8 +6269,6 @@ export type Query_Root = { delegation: Array; /** fetch aggregated fields from the table: "delegation" */ delegation_aggregate: Delegation_Aggregate; - /** fetch data from the table: "delegation" using primary key columns */ - delegation_by_pk?: Maybe; /** fetch data from the table: "distribution_params" */ distribution_params: Array; /** fetch aggregated fields from the table: "distribution_params" */ @@ -6854,12 +6852,6 @@ export type Query_RootDelegation_AggregateArgs = { }; -export type Query_RootDelegation_By_PkArgs = { - delegator_address: Scalars['String']; - validator_address: Scalars['String']; -}; - - export type Query_RootDistribution_ParamsArgs = { distinct_on?: Maybe>; limit?: Maybe; @@ -8152,8 +8144,6 @@ export type Subscription_Root = { delegation: Array; /** fetch aggregated fields from the table: "delegation" */ delegation_aggregate: Delegation_Aggregate; - /** fetch data from the table: "delegation" using primary key columns */ - delegation_by_pk?: Maybe; /** fetch data from the table: "distribution_params" */ distribution_params: Array; /** fetch aggregated fields from the table: "distribution_params" */ @@ -8651,12 +8641,6 @@ export type Subscription_RootDelegation_AggregateArgs = { }; -export type Subscription_RootDelegation_By_PkArgs = { - delegator_address: Scalars['String']; - validator_address: Scalars['String']; -}; - - export type Subscription_RootDistribution_ParamsArgs = { distinct_on?: Maybe>; limit?: Maybe; @@ -14194,7 +14178,7 @@ export type ChainIdQueryResult = Apollo.QueryResult