Can apollo-android be used as java client?

I am working on a spring boot application that needs to talk to the Github GraphQl API. Can Apollo Android be used for this purpose? Since this is all the meager documentation available and the sample project is written with android in mind, I'm not sure.

+4


source to share


3 answers


the maintainer here. You can absolutely use Apollo-Android in a Java-only project. There is only 1 Android specific module / artifact which is not required. The android artifact simply introduces android-specific threading patterns. Join us if you need more help :-) http://www.apollostack.com/#slack



+5


source


Found this maven plugin. It would be nice if you could create a sample project that uses apollo-android on spring boot.



+1


source


You can check out the graphql-maven-plugin-project which generates all the code you need to make it easier to execute GraphQL queries in Java.

It is available at https://github.com/graphql-java-generator/graphql-maven-plugin-project . This is the website https://graphql-maven-plugin-project.graphql-java-generator.com

Etienne

0


source







All Articles