graphql_client 0.0.1

A work-in-progress generic graphql client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query FilmsQuery {
  allFilms {
    totalCount
    edges {
      node {
        title
        characterConnection {
          edges {
            node {
              id
              name
            }
          }
        }
      }
    }
  }
}