graphql-ws-client 0.13.0

A graphql over websockets client
Documentation
1
2
3
4
5
6
7
8
9
10
subscription BooksChanged {
  books(mutationType: CREATED) {
    id
    book {
      id
      name
      author
    }
  }
}