Concept Flow - GraphQL vs REST comparison
Client sends request
REST: Fixed endpoints
Server returns fixed data
Client may need multiple requests
Client sends request
GraphQL: Single endpoint
Client specifies data shape
Server returns exactly requested data
Shows how REST uses fixed endpoints returning fixed data, often requiring multiple requests, while GraphQL uses a single endpoint where client specifies exactly what data it wants.