greyhwndz

greyhwndz

JSON-API (thru ja_serializer) OR GraphQL (thru Absinthe)?

Hello everyone!

Somebody told me that ja_serializer hasn’t had any release for sometime already because of the popularity of GraphQL.

I was wondering if I can ask everyone what you have adopted with regards to database access layer at the backend. Does Absinthe-GraphQL covers everything and more than JSON-API?

Would love to hear your valuable opinions!

First 5 of 5 Posts Switch mode

radar

radar

Rather than compare ja_serializer (which received a release in Feb of this year, btw) and absinthe, allow me to list what I view are the pros of GraphQL over a JSON API, that I listed on an internal company chat where I work:

Those benefits are:

  • Type safety — you could write a mock frontend in TypeScript, send those types to a backender writing GraphQL and they can very easily build an API to match.
  • You can limit the fields you request to just the ones important to you now
  • Predictability in how the responses are returned — the schema tells you exactly what shape you can expect to get back
  • Documentation is automatically generated through introspecting the schema.
  • Excellent tooling (look at GitHub’s GraphQL explorer!!)
  • Clients and servers share the exact same schema, automatically
  • and my favourite “excuse”: GraphQL Code, on both the server and client side is much clearer to understand than bespoke JSON API solutions — particularly when it comes down to how fields are resolved, especially for associated data

For all the above reasons, I think GraphQL has “won”.


To speak to the packages themselves: I’ve always found ja_serializer a bit… clumsy to use. I feel like it’s forcing me to do things the ja_serializer way, rather than allowing for any sort of flexibility.

To be honest, I don’t use absinthe in my day-to-day work, but I have used it for a pet project (or two) in the past and much prefer its flexibility. I can design GraphQL APIs to return things in exactly the shape I want.

What really wins for me though is the ability to write + run queries in an app such as GraphQL Playground, and then to copy + paste these queries verbatim into my frontend code.

If I was to choose today, the choice would be clear. GraphQL (and by extension, Absinthe) has won.

It would be remiss of me not to mention the wonderful Craft GraphQL APIs in Elixir with Absinthe book, written by the maintainers of Absinthe themselves! I would recommend this as the very next thing to read after this post.

Good luck on your GraphQL journey!

blatyo

blatyo

Conduit Core Team

I’ll just add, you really only want to use these if you have a client library that supports it. If you’re using EmberData, then you may choose JSON API, because it’s the path of least resistance. If you’re using pretty much anything else, you’ll have a better experience with GraphQL.

It’s worth noting, the client libraries for both of these are pretty good in javascript. In other languages, the client libraries aren’t so great. If you’re doing server to server communication, I’d recommend a plain old REST API.

greyhwndz

greyhwndz OP

Have you had experience with ember-apollo-client?

blatyo

blatyo

Conduit Core Team

I went to an ember meetup once where someone gave a talk about it. They seemed pretty happy with it. I think there are some things you forego when using it with ember, but I couldn’t give you the specifics.

greyhwndz

greyhwndz OP

By the way apologies to the concerned for me saying that there hasn’t been a release for ja_serializer for sometime. I was wrong

— All posts loaded —

Where Next?

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
silverdr
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated! To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead. Sta...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
michallepicki
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
akoutmos
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New

We're in Beta

About us Mission Statement