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
query Note($note_id: ID!) {
    note(noteId: $note_id) {
        ...Note
    }
}

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