blips 0.1.0

A client for interacting with the Blips API.
Documentation
1
2
3
4
5
6
7
8
9
10
mutation RegisterUser($email: String!, $password: String!, $secret_code: String!) {
    registerUser(email: $email, password: $password, secretCode: $secret_code) {
        ...LoginResponse
    }
}

fragment LoginResponse on LoginResponse {
    __typename
    accessToken
}