4 Repos
Mechanisms for resolving and embedding related data entities within a single API response.
Distinct from Data Resource Management: Distinct from Data Resource Management by focusing on the relationship resolution (embedding/expanding) rather than basic CRUD operations.
Explore 4 awesome GitHub repositories matching data & databases · Relational Resource Mapping. Refine with filters or upvote what's useful.
json-server is a development toolset used to simulate a full REST API from a JSON file. It functions as a customizable mock API server that allows for the simulation of CRUD operations and resource relationships without the need to write backend code. The project enables rapid prototyping by generating a fake backend that persists data changes back to a local JSON file. It distinguishes itself by providing a static asset file server to deliver local documents, images, and stylesheets alongside the mock API endpoints. The server includes capabilities for data querying, such as parameter-based
Allows fetching related data by embedding child resources or expanding parent references in a single request.
JSON API is a set of industry standards for RESTful APIs that defines uniform protocols for resource serialization, error responses, and query parameters. It provides a specification for request and response payloads in JSON-based APIs to ensure consistency across endpoints. The specification focuses on reducing network requests through a structured resource serialization format and a standardized mechanism for embedding related resources into a single response. It utilizes a custom JSON media type for content negotiation and supports the definition of custom profiles to provide specialized i
Enables bundling linked data into a single response when explicitly requested via query parameters to minimize network requests.
CodeIgniter is a PHP web framework built on the Model-View-Controller pattern, designed for building full-stack web applications. It provides a lightweight toolkit with minimal configuration, organizing application logic into controllers, models, and views for clean separation of concerns. The framework includes a fluent query builder for constructing SQL statements programmatically, PSR-4 autoloading with namespace mapping, and a service-based dependency injection container for managing shared class instances. The framework distinguishes itself through its comprehensive set of built-in tools
CodeIgniter loads and appends related data when the client specifies an include query parameter, using dedicated methods on the transformer.
JSONPlaceholder ist ein REST-API-Mock-Server und JSON-Mocking-Dienst, der eine gehostete Sandbox für die Frontend-Entwicklung bereitstellt. Er fungiert als Fake-Backend, das vordefinierte JSON-Antworten zurückgibt, um eine REST-API für Entwicklung und Tests zu simulieren. Der Dienst unterstützt Cross-Origin Resource Sharing (CORS), wodurch API-Integrationen von verschiedenen Browser-Domains aus getestet werden können. Er ermöglicht die Simulation von CRUD-Operationen und den Abruf von Mock-Daten, ohne eine Live-Datenbank zu benötigen. Das System bildet URL-Muster auf einen statischen JSON-basierten Datenspeicher ab und verarbeitet Requests zustandslos. Es enthält Funktionen für Query-Parameter-Filterung und verschachteltes Ressourcen-Mapping, um One-to-Many-relationale Datenstrukturen zu simulieren.
Resolves relational data by linking child resource collections to parent entities via URL paths.