wave-api 0.1.0

Typed Rust client for the Wave Accounting GraphQL API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Query: Get user

Retrieve user information for the logged in user.

Operation
:   ```graphql
    query {
      user {
        id
        firstName
        lastName
        defaultEmail
        createdAt
        modifiedAt
      }  
    }
    ```