use {
carbon_core::graphql::primitives::{U64, U8},
juniper::GraphQLObject,
serde_json,
};
#[derive(Debug, Clone, GraphQLObject)]
#[graphql(name = "LendingAccountLiquidate")]
pub struct LendingAccountLiquidateGraphQL {
pub instruction_metadata: crate::instructions::graphql::InstructionMetadataGraphQL,
pub asset_amount: U64,
pub liquidatee_accounts: U8,
pub liquidator_accounts: U8,
pub accounts: carbon_core::graphql::primitives::Json,
}
impl TryFrom<crate::instructions::postgres::LendingAccountLiquidateRow>
for LendingAccountLiquidateGraphQL
{
type Error = carbon_core::error::Error;
fn try_from(
row: crate::instructions::postgres::LendingAccountLiquidateRow,
) -> Result<Self, Self::Error> {
Ok(Self {
instruction_metadata: row.instruction_metadata.into(),
asset_amount: carbon_core::graphql::primitives::U64(*row.asset_amount),
liquidatee_accounts: carbon_core::graphql::primitives::U8(
(*row.liquidatee_accounts) as u8,
),
liquidator_accounts: carbon_core::graphql::primitives::U8(
(*row.liquidator_accounts) as u8,
),
accounts: carbon_core::graphql::primitives::Json(
serde_json::to_value(&row.accounts.0)
.map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?,
),
})
}
}