16-09-2020, 11:42 AM
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:
You can query like:
This website (How to GraphQL) has an awesome set of guides:
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.
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.