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 CreateNote($date: Date, $name: String, $project_id: ID) {
    createNote(date: $date, name: $name, projectId: $project_id) {
        ...Note
    }
}

fragment Note on Note {
    __typename
    body
    date
    endDate
    hidePreview
    id
    name
    updatedAt
}