wave-api 0.1.0

Typed Rust client for the Wave Accounting GraphQL API
Documentation
# Query: List countries (constants)

Fetch a list of `country` constants and include their `provinces`.

Other sets of constants are also available, like `currencies` and `accountSubtypes`.

Operation
:   ```graphql
    query {
      countries {
        code
        name
        provinces {
          code
          name
        }
      }
    }
    ```