#1MinuteTip GraphQL API in offers developers a single endpoint to call for all data needed in one request. This API offers two main benefits over the traditional REST APIs:
- This API reduces round trips to server as they can retrieve all requested data in a single call
- This API retrieves only that data that is required. Nothing more, nothing less.
Here is a YouTube video (1 hour 4 minutes) from Salesforce Developers channel showing how to implement gGraphQL from scratch.