Anybody using Aurelia with graphql

Viewed 456

My backend exposes graphql wanted to know what is your experience with aurelia and graphql.

Are there any good libraries out there to use?

I could only find a minimal apollo bind library here https://github.com/stphdenis/aurelia-apollo-bind

2 Answers

I suppose you can use this Angular 9 sample https://www.youtube.com/watch?v=GifdPhc_OWU You will need the same GraphQL queries generator. And a similar way of calling a back-end.

I guess it is even possible to write content item templates in Aurelia syntax in place of Liquid templates of content type definitions, gather them to front-end along with JSON and render together. I would try to achieve that.

Related