wave-api 0.1.0

Typed Rust client for the Wave Accounting GraphQL API
Documentation
pub(crate) const MONEY_TRANSACTION_CREATE: &str = r#"
mutation ($input: MoneyTransactionCreateInput!) {
  moneyTransactionCreate(input: $input) {
    didSucceed
    inputErrors { code message path }
    transaction {
      id
    }
  }
}
"#;

pub(crate) const MONEY_TRANSACTIONS_CREATE: &str = r#"
mutation ($input: MoneyTransactionsCreateInput!) {
  moneyTransactionsCreate(input: $input) {
    didSucceed
    inputErrors { code message path }
    transactions {
      id
    }
  }
}
"#;