blips 0.1.0

A client for interacting with the Blips API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mutation CreateBoards($names: [String!]!) {
    createBoards(names: $names) {
        ...Board
    }
}

fragment Board on Board {
    __typename
    archivedAt
    emoji
    id
    lastViewedAt
    name
    projectCompletedProjectColumnId
    taskCompletedProjectColumnId
}