public CompletableFuture postGraphql()

in src/main/java/com/spotify/github/v3/clients/GitHubClient.java [651:658]


  public CompletableFuture<Response> postGraphql(final String data) {
    final Request request =
        graphqlRequestBuilder()
            .method("POST", RequestBody.create(parse(MediaType.APPLICATION_JSON), data))
            .build();
    log.info("Making POST request to {}", request.url());
    return call(request);
  }