awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 مستودعات

Awesome GitHub RepositoriesQuery Modifiers

Hooks for applying custom query constraints to table data.

Distinct from Virtual Table Querying: Distinct from Virtual Table Querying: focuses on Eloquent-specific query modification for list pages.

Explore 4 awesome GitHub repositories matching data & databases · Query Modifiers. Refine with filters or upvote what's useful.

Awesome Query Modifiers GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • filamentphp/filamentالصورة الرمزية لـ filamentphp

    filamentphp/filament

    31,215عرض على GitHub↗

    Filament is a full-stack framework for building administrative panels and management interfaces within the Laravel ecosystem. It provides a declarative, component-based architecture that allows developers to construct complex, data-driven applications using server-side configuration objects rather than manual HTML. By inspecting database model structures and relationships, the framework automates the generation of CRUD interfaces, forms, and data tables, significantly reducing boilerplate code. The project distinguishes itself through a highly modular and extensible design that supports custo

    Applies custom Eloquent query modifications specifically to tables displayed on list pages.

    PHPadminalpine-jsbuilder
    عرض على GitHub↗31,215
  • baomidou/mybatis-plusالصورة الرمزية لـ baomidou

    baomidou/mybatis-plus

    17,391عرض على GitHub↗

    MyBatis-Plus is a persistence framework extension for Java that simplifies data access by reducing boilerplate code. It provides a toolkit for automating common database operations, utilizing dynamic query wrappers and a system for automated CRUD generation. The project distinguishes itself through a code generation system that produces mapper, model, service, and controller layers based on database metadata. It also implements a security layer that prevents SQL injection through input sanitization and blocks dangerous global update or delete operations to prevent accidental data loss. The f

    Allows modification of executed SQL statements at runtime to inject pagination and safety constraints via a plugin system.

    Javamybatismybatis-plusmybatis-spring
    عرض على GitHub↗17,391
  • pagehelper-org/mybatis-pagehelperالصورة الرمزية لـ pagehelper-org

    pagehelper-org/Mybatis-PageHelper

    12,358عرض على GitHub↗

    Mybatis-PageHelper is a pagination plugin and persistence framework extension for MyBatis. It functions as a physical pagination engine that automatically appends limit and offset clauses to SQL queries to retrieve specific record subsets from a data source. The project optimizes data retrieval by modifying SQL statements at runtime to reduce memory overhead. It implements database pagination and data set windowing to manage the retrieval of paginated data within Java applications. The system utilizes a MyBatis interceptor chain for dynamic SQL rewriting and employs database dialects to ensu

    Uses a MyBatis interceptor chain to modify SQL queries at runtime before they are sent to the database.

    Javamybatismybatis-plugin
    عرض على GitHub↗12,358
  • kaminari/kaminariالصورة الرمزية لـ kaminari

    kaminari/kaminari

    8,681عرض على GitHub↗

    Kaminari is a Ruby pagination library and ActiveRecord tool designed to divide large datasets into smaller pages using limit and offset logic. It functions as a data paging utility that manages record offsets and total count calculations for Ruby web applications. The project distinguishes itself by generating SEO-friendly navigation links and standardized HTML tags to improve search engine indexing. It supports localized navigation labels and translation files for multilingual interface design, and allows for customizable pagination themes via template overrides of view partials. The librar

    Implements query modifiers to attach pagination logic directly to database query objects.

    Ruby
    عرض على GitHub↗8,681
  1. Home
  2. Data & Databases
  3. Virtual Table Querying
  4. Query Modifiers

استكشف الوسوم الفرعية

  • SQL InterceptorsMechanisms for intercepting and modifying SQL statements at runtime before execution. **Distinct from Query Modifiers:** Focuses on general SQL statement modification for pagination and safety, not just Eloquent list pages.