I need to call GraphQL API (Shopify Storefront API) from my Spring Boot app and I can`t find any source where described which libraries I can use for that. Can you suggest l
You could use Apollo Android, which the documentation says is not just for Android, but any Java/Kotlin application.
You could also just go old-school and use HTTP POSTS from Spring and handle the response yourself (but you would lose type-safety features).