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 CreateGroups($container_id: ID!, $container_type: ContainerTypeEnum!, $names: [String!]!) {
    createGroups(containerId: $container_id, containerType: $container_type, names: $names) {
        ...Group
    }
}

fragment Group on Group {
    __typename
    collapsed
    date
    id
    keepTasks
    name
    order
    projectId
}