Queries like getting the columns data or items were working fine in automation scripts till yesterday .Today we see 400 Bad Request .
They work fine with POST , was there any upgrade overnight ? Will GET not be supported in future?
Using 2023-10 API version.
Hey there @chamundeshwari , welcome to the developers community!
The 2023-10 API version was deprecated a while ago, please migrate to the current version and let me know if you have any more questions.
Cheers,
I am having the same issue, my get items call its failing with the same error code “INVALID_GRAPHQL_REQUEST” since FEB 17. I have read all the documentation but not helpful, please advice!!!
How GraphQL works over HTTP:
https://graphql.org/learn/serving-over-http/
Basically, if you want to use GET (if the server offers it) you have to send your query as a query string not in the body. Bodies in GET requests are not part of the HTTP standard.
Why are you using GET and not POST in the first place? Just curious.