arrow_upward
GraphQL
#1
For those of you building REST APIs, might I suggest taking a look at GraphQL!  I've been learning more about it lately, very cool.

Instead of:

Code:
/user
/user/123/posts
...


You can query like:

Code:
query {
  user {
    posts {
      ...
    }
  }
}


This website (How to GraphQL) has an awesome set of guides:

GraphQL.

Registered Members Only

You need to be a registered member to see more on GraphQL.
Login or Sign up to get access to a huge variety of top quality leaks.


I chose the Backend "graphql-node" one and enjoyed it, but they have other ones for front-end, other languages, etc!  Even if you have no previous GraphQL knowledge, this guide is very beginner-friendly.



[+] 1 user Likes seedir's post
#2
GraphQL is really nice I use it a lot at work, I highly recommend it!



#3
I've only heard positive stuff about GraphQL. Looks interesting and could be fun to try to use in a project. Thanks!