awesome-repositories.com
Blog
MCP
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
apollographql avatar

apollographql/apollo-android

0
View on GitHub↗
3,953 Stars·694 Forks·Kotlin·MIT·9 Aufrufewww.apollographql.com/docs/kotlin↗

Apollo Android

Apollo Android ist eine typsichere GraphQL-Client-Bibliothek für die Ausführung von Queries und Mutations über JVM, Android und Kotlin Multiplatform hinweg. Sie enthält ein Codegenerierungstool, das unveränderliche Klassen und Parser aus GraphQL-Schemas und Operationsdateien erstellt, um Typsicherheit zur Kompilierzeit zu gewährleisten.

Das Projekt verfügt über einen normalisierten Cache, der Antworten in eine Lookup-Tabelle flacht, um eine einzige Quelle der Wahrheit beizubehalten. Es bietet zudem einen Subscription-Client für Echtzeit-Updates serverseitiger Daten via WebSocket- oder SSE-Verbindungen sowie ein Mocking-Framework zur Simulation von Serverantworten und zur Generierung gefälschter typsicherer Daten für Tests.

Die Bibliothek deckt ein breites Spektrum an Funktionen ab, einschließlich Netzwerkoptimierung durch Request-Batching und persistente Queries sowie die Verwaltung des lokalen Datenzustands mit optimistischen Updates und Paginierung. Sie unterstützt die Integration benutzerdefinierter HTTP-Engines und das Mapping benutzerdefinierter Skalartypen auf native Sprachklassen.

Das Tool integriert sich in Entwicklungs-IDEs, um automatische Codegenerierung und Navigation vom Editor zu Definitionen bereitzustellen.

Features

  • Operation Execution - Manages the full lifecycle of executing GraphQL queries and mutations from request to response parsing.
  • GraphQL Clients - Provides a strongly-typed GraphQL client for Android, JVM, and Kotlin Multiplatform.
  • GraphQL Model Generators - Generates immutable native classes and parsers from GraphQL schemas to ensure compile-time type safety.
  • Normalized Caches - Implements a normalized client-side cache that flattens server responses to maintain a single source of truth.
  • GraphQL Normalized Caches - Implements a client-side cache that normalizes GraphQL query results by unique identifiers to ensure referential consistency.
  • GraphQL Query Performance Optimizations - Provides specialized GraphQL performance optimizations including request batching and persisted queries.
  • GraphQL Query Caches - Caches the results of GraphQL queries in memory or local storage to accelerate subsequent data requests.
  • WebSocket Subscriptions - Provides a specialized subscription client for real-time updates via WebSockets and Server-Sent Events.
  • GraphQL API Mocking - Provides a mocking framework to simulate GraphQL server responses and generate fake type-safe data.
  • Type-Safe Data Class Generation - Generates immutable, strongly-typed classes and parsers from GraphQL schemas at compile time.
  • GraphQL Subscriptions - Maintains persistent connections to a server to receive automatic real-time data updates.
  • Real-time Data Subscriptions - Manages persistent connections for delivering real-time data updates across multiple services.
  • Real-Time Data Synchronization - Synchronizes real-time data via GraphQL subscriptions over WebSockets and Server-Sent Events.
  • Compile-Time Code Generation - Provides compile-time generation of immutable classes and parsers from GraphQL schemas to ensure type safety.
  • Type-Safe Response Simulation - Simulates server responses using fake type-safe models to verify application logic without a backend.
  • GraphQL Data Fetching - Executes declarative GraphQL queries and mutations to retrieve or modify remote server information.
  • Type-Safe Model Mapping - Generates strongly-typed language models from schemas to prevent runtime data access errors.
  • Persisted Queries - Reduces network overhead by utilizing persisted queries and identifiers instead of full strings.
  • Client-Side Caching - Implements a normalized client-side cache to maintain a single source of truth.
  • GraphQL Query Cost Limiters - Protects backend services by limiting the computed cost of GraphQL operations.
  • Query Batching - Groups multiple GraphQL operations into a single network request to reduce round-trip latency.
  • Persisted Query Execution - Supports sending unique operation identifiers instead of full query strings to reduce network bandwidth.
  • Response Caching - Implements caching of GraphQL responses to improve performance and reduce network load.
  • Local Persistence - Stores a normalized version of the cache in a local database to maintain state across restarts.
  • GraphQL Subscription Clients - Implements a specialized client for handling real-time server updates via WebSockets or Server-Sent Events.
  • GraphQL Custom Scalars - Maps custom GraphQL scalars, such as dates and big decimals, into native language types.
  • Persisted Query Whitelists - Restricts API execution to a pre-approved list of persisted query hashes for security.
  • GraphQL Query Safelisting - Limits execution to pre-approved queries to enhance security and reduce server latency.
  • Request Batching - Combines multiple GraphQL operations into a single network request to minimize round-trip latency.
  • GraphQL Performance Monitors - Analyzes request metrics and execution data specifically for GraphQL operations to optimize performance.
  • API Simulation and Mocking - Includes a mocking framework to simulate server responses and generate fake type-safe data for testing.
  • Single-Request Data Fetchers - Allows fetching complex, nested data structures in a single network round-trip to minimize sequential API calls.
  • Request Orchestration - Orchestrates asynchronous GraphQL requests across multiple backend services to minimize latency.
  • Mobile GraphQL Tools - Strongly-typed GraphQL client for Android.

Star-Verlauf

Star-Verlauf für apollographql/apollo-androidStar-Verlauf für apollographql/apollo-android

KI-Suche

Entdecke weitere awesome Repositories

Beschreibe in einfachen Worten, was du brauchst — die KI bewertet tausende kuratierte Open-Source-Projekte nach Relevanz.

Start searching with AI

Open-Source-Alternativen zu Apollo Android

Ähnliche Open-Source-Projekte, sortiert nach der Anzahl der gemeinsamen Funktionen mit Apollo Android.
  • apollographql/apollo-kotlinAvatar von apollographql

    apollographql/apollo-kotlin

    3,955Auf GitHub ansehen↗

    Apollo Kotlin is a strongly-typed GraphQL client and code generation library designed for Kotlin and JVM applications. It functions as a comprehensive development tool that transforms GraphQL schema definitions and query documents into type-safe models during the build process, ensuring that data access errors are identified at compile time rather than at runtime. The project distinguishes itself through its multiplatform runtime abstraction, which allows developers to share data fetching and caching logic across Android, iOS, and desktop environments. It provides a normalized local caching s

    Kotlinandroidapollographqlgraphql
    Auf GitHub ansehen↗3,955
  • apollographql/apollo-iosAvatar von apollographql

    apollographql/apollo-ios

    4,030Auf GitHub ansehen↗

    apollo-ios is a GraphQL client library for iOS and Apple platforms that enables type-safe network communication. It transforms GraphQL operations into generated Swift models, ensuring that network responses are validated at compile time to eliminate manual mapping. The library features a normalized cache manager that stores entities in a flat structure to maintain data consistency across different application views. It also optimizes network performance using hash-based persisted queries to reduce payload sizes and supports real-time data streaming via WebSockets or HTTP subscriptions. The p

    Swiftapollo-iosapollographqlgraphql
    Auf GitHub ansehen↗4,030
  • urql-graphql/urqlAvatar von urql-graphql

    urql-graphql/urql

    8,959Auf GitHub ansehen↗

    urql is a GraphQL client library designed for fetching and managing data from a GraphQL API. It provides a system for handling GraphQL data fetching, state management, and integration with React components. The library is distinguished by a middleware pipeline architecture that allows the request-response flow to be modified through swappable exchanges. This enables the customization of the data layer, including the addition of custom business logic, request deduplication, and specialized fetching behaviors. The project covers a broad range of capabilities, including normalized caching to en

    TypeScriptcomplex-appsexchangegraphql
    Auf GitHub ansehen↗8,959
  • reactive/data-clientAvatar von reactive

    reactive/data-client

    2,031Auf GitHub ansehen↗

    Data-client is an asynchronous state management library designed to synchronize server data with frontend applications. It functions as a normalized cache manager that maps complex API responses into structured, relational entities, ensuring data consistency across the entire application. By providing a unified communication layer, the library supports both REST and GraphQL, allowing developers to bind network data directly to user interface components through declarative hooks. The library distinguishes itself through a robust architecture for optimistic user interface development, where loc

    TypeScriptexpofetchhooks
    Auf GitHub ansehen↗2,031
Alle 30 Alternativen zu Apollo Android anzeigen→

Häufig gestellte Fragen

Was macht apollographql/apollo-android?

Apollo Android ist eine typsichere GraphQL-Client-Bibliothek für die Ausführung von Queries und Mutations über JVM, Android und Kotlin Multiplatform hinweg. Sie enthält ein Codegenerierungstool, das unveränderliche Klassen und Parser aus GraphQL-Schemas und Operationsdateien erstellt, um Typsicherheit zur Kompilierzeit zu gewährleisten.

Was sind die Hauptfunktionen von apollographql/apollo-android?

Die Hauptfunktionen von apollographql/apollo-android sind: Operation Execution, GraphQL Clients, GraphQL Model Generators, Normalized Caches, GraphQL Normalized Caches, GraphQL Query Performance Optimizations, GraphQL Query Caches, WebSocket Subscriptions.

Welche Open-Source-Alternativen gibt es zu apollographql/apollo-android?

Open-Source-Alternativen zu apollographql/apollo-android sind unter anderem: apollographql/apollo-kotlin — Apollo Kotlin is a strongly-typed GraphQL client and code generation library designed for Kotlin and JVM applications.… apollographql/apollo-ios — apollo-ios is a GraphQL client library for iOS and Apple platforms that enables type-safe network communication. It… urql-graphql/urql — urql is a GraphQL client library designed for fetching and managing data from a GraphQL API. It provides a system for… reactive/data-client — Data-client is an asynchronous state management library designed to synchronize server data with frontend… rmosolgo/graphql-ruby — GraphQL-Ruby is a Ruby library for building GraphQL APIs with a strongly typed schema and a dedicated query execution… facebook/relay — Relay is a GraphQL client framework and state manager used for building data-driven applications. It functions as a…