I make a demo in which you need to make a post-request in the form of graphql (request in the form of json). I know that there is a normal graphql converter for retrofit, but now there’s no time at all to deal with it urgently, you need to produce a result! :( Therefore, you need something like:

String a = "value"; String b = "value"; String urlParameters = "param1=a&param2=b&param3=c"; String request = "http://example.com/index.php"; Retrofit retrofit = new Retrofit.Builder() .baseUrl(APIUrl.BASE_URL) .add(urlParameters) //Как я вижу эту строку .build(); 

I would be very grateful for any help and advice!

0