Category: GraphQL
-
Cursor Pagination vs. Offset-Based Pagination: A Performance Showdown
Pagination is an essential feature for efficiently retrieving large datasets in web applications. Traditionally, offset-based pagination (LIMIT … OFFSET …) has been the default approach, but it suffers from performance issues as datasets grow. A more efficient alternative is cursor-based pagination, which eliminates unnecessary database scans and improves response times. In this article, we’ll compare… Read more
-
GraphQL + HotChocolate in .NET — The Next Evolution of REST
This article covers GraphQL benefits, its alignment with SOLID principles and Clean Architecture, and a real-world case using HotChocolate in .NET. Read more