agentsclimarketplace

Syncfusion angular query builder

Skill syncfusion/angular-ui-components-skills/skills/syncfusion-angular-query-builder

This repository contains agent prompts for creating skills and organizing AI agent capabilities.

Install
npx -y skills add syncfusion/angular-ui-components-skills --skill syncfusion-angular-query-builder

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Implement the Syncfusion Angular Query Builder component for visual query construction, dynamic filtering, and rule management. Use this when building visual filter UIs, creating query conditions programmatically, importing/exporting SQL or MongoDB queries, or customizing query builder templates. This skill covers data binding, column configuration with operators, rule groups, theming, and Angular forms integration for the QueryBuilder (ejs-querybuilder) component.

SKILL.md

10.7 KB, ~2.5k tokens by cl100k_base, as published. Nobody here has run it

Implementing Syncfusion Angular Query Builder

The Syncfusion Angular Query Builder (ejs-querybuilder) is a UI component for visually constructing complex filter queries. Users define conditions (field + operator + value) and combine them into groups with AND/OR logic. The resulting rules can be exported to JSON, SQL, or MongoDB formats for use in filtering or API queries.

Navigation Guide

Getting Started

πŸ“„ Read: references/getting-started.md

  • Installing @syncfusion/ej2-angular-querybuilder
  • Setting up CSS/theme imports (Material3)
  • Creating a basic Query Builder with columns
  • Rendering with an initial rule
  • Running the Angular application

Columns Configuration

πŸ“„ Read: references/columns.md

  • Defining columns with field, label, type
  • Auto-generating columns from dataSource
  • Configuring operators per column (full operators table)
  • Setting step values for number fields
  • Formatting date and number values
  • Enabling validation (allowValidation, isRequired, min/max)

Data Binding

πŸ“„ Read: references/data-binding.md

  • Local data binding with JS arrays (JsonAdaptor) β€” recommended and safe
  • Complex/nested data binding with sub-columns
  • ⚠️ Remote DataManager (OData, WebApiAdaptor) patterns documented in this reference are not recommended β€” see Security & Trust Boundary below before use

Filtering & Rules Management

πŸ“„ Read: references/filtering-and-rules.md

  • Adding/deleting conditions with addRules / deleteRules
  • Adding/deleting groups with addGroups / deleteGroups
  • Cloning rules/groups (cloneRule, cloneGroup)
  • Locking rules/groups (lockRule, lockGroup)
  • Separate connectors between rules (enableSeparateConnector)
  • Restricting group nesting depth (maxGroupCount)
  • Drag-and-drop rule reordering (allowDragAndDrop)
  • Controlling button visibility (showButtons)

Import & Export

πŸ“„ Read: references/import-export.md

  • Importing from JSON (initial rule property + setRules)
  • Importing from SQL (inline, parameterized, named parameterized)
  • Importing from MongoDB (setMongoQuery)
  • Exporting to JSON (getRules)
  • Exporting to SQL (inline, parameterized, named parameterized)
  • Exporting to MongoDB (getMongoQuery)

Templates & Model Binding

πŸ“„ Read: references/templates.md

  • Custom header template with dropdown, split-button, NOT condition
  • Column template with create / write / destroy pattern
  • Using NgTemplate for column value inputs
  • Rule template (ruleTemplate + actionBegin event)
  • Model binding for field, operator, value inputs (fieldModel, operatorModel, valueModel)

Style, Appearance & Layout

πŸ“„ Read: references/style-and-appearance.md

  • CSS class customization table
  • Theme Studio integration
  • Display modes: horizontal (default) vs. vertical (displayMode)
  • Summary view (summaryView)
  • RTL support (enableRtl)
  • State persistence (enablePersistence)

Accessibility & Localization

πŸ“„ Read: references/accessibility-and-localization.md

  • WCAG 2.2, Section 508, WAI-ARIA compliance
  • Keyboard navigation shortcuts
  • Localization setup and full locale key reference
  • Sort columns display (sortDirection)

API Reference

πŸ“„ Read: references/api.md

  • Complete Properties reference (40+ properties)
  • Complete Methods reference (30+ methods)
  • Complete Events reference (7 events)
  • Type definitions and interfaces
  • Official Syncfusion documentation links

Quick Start Example

import { QueryBuilderModule } from '@syncfusion/ej2-angular-querybuilder';
import { Component } from '@angular/core';

@Component({
  imports: [QueryBuilderModule],
  standalone: true,
  selector: 'app-root',
  template: `
    <ejs-querybuilder width="70%" [rule]="importRules">
      <e-columns>
        <e-column field="EmployeeID" label="Employee ID" type="number"></e-column>
        <e-column field="FirstName" label="First Name" type="string"></e-column>
        <e-column field="Title" label="Title" type="string"></e-column>
        <e-column field="HireDate" label="Hire Date" type="date" format="dd/MM/yyyy"></e-column>
        <e-column field="Country" label="Country" type="string"></e-column>
      </e-columns>
    </ejs-querybuilder>
  `
})
export class App {
  public importRules = {
    condition: 'and',
    rules: [
      { field: 'EmployeeID', label: 'Employee ID', type: 'number', operator: 'equal', value: 1 },
      { field: 'Country', label: 'Country', type: 'string', operator: 'equal', value: 'USA' }
    ]
  };
}

Install with:

ng add @syncfusion/ej2-angular-querybuilder

Common Patterns

Pattern 1: Export rules to SQL for backend use

// In your component
import { QueryBuilderComponent } from '@syncfusion/ej2-angular-querybuilder';
import { ViewChild } from '@angular/core';

@ViewChild('querybuilder') qb!: QueryBuilderComponent;

getSqlQuery(): string {
  return this.qb.getSqlFromRules(this.qb.getRules());
}

Pattern 2: Load rules at runtime

// After component renders, update rules dynamically
this.qb.setRules({
  condition: 'or',
  rules: [
    { field: 'City', operator: 'equal', value: 'London' },
    { field: 'Country', operator: 'equal', value: 'UK' }
  ]
});

Pattern 3: Programmatically add a condition

// Add a rule to the root group
this.qb.addRules([{ field: 'Title', operator: 'contains', value: 'Manager' }], 'querybuilder_group0');

Pattern 4: Enable drag-and-drop + clone + lock

<ejs-querybuilder [allowDragAndDrop]="true" [showButtons]="showButtons">
</ejs-querybuilder>
public showButtons = { ruleDelete: true, groupInsert: true, groupDelete: true, ruleInsert: true, cloneRule: true, cloneGroup: true, lockRule: true, lockGroup: true };

Key Properties

PropertyTypePurpose
[rule]RuleModelInitial query rules to render
[columns]ColumnsModel[]Column definitions (field, label, type, operators)
[dataSource]object[]Local JS array only β€” do not bind to a remote DataManager or arbitrary URL (see Security section)
[allowDragAndDrop]booleanEnable drag-and-drop rule/group reordering
[enableSeparateConnector]booleanDifferent AND/OR per rule instead of per group
[enableNotCondition]booleanShow NOT condition toggle on groups
[summaryView]booleanShow human-readable summary of current query
[enablePersistence]booleanPersist rules to localStorage across refreshes
[enableRtl]booleanRight-to-left layout for RTL languages
[displayMode]string'Horizontal' (default) or 'Vertical' layout
[maxGroupCount]numberMax number of nested groups (default: 5)
[sortDirection]stringSort field dropdown: 'Ascending' or 'Descending'
[allowValidation]booleanEnable field/operator/value validation
[showButtons]ShowButtonsControl visibility of action buttons

Key Methods

MethodPurpose
getRules()Get current rules as JSON RuleModel
setRules(rules)Set rules programmatically at runtime
getSqlFromRules(rules)Export rules to inline SQL string
setRulesFromSql(sql)Import inline SQL string into Query Builder
getMongoQuery(rules)Export rules to MongoDB query string
setMongoQuery(query)Import MongoDB query string
addRules(rules, groupID)Add rules to a specific group
deleteRules(ruleIDs)Remove rules by ID
addGroups(groups, groupID)Add sub-groups to a group
deleteGroups(groupIDs)Remove groups by ID
cloneRule(ruleID)Clone a rule adjacent to the original
cloneGroup(groupID)Clone a group with all its rules
lockRule(ruleID)Make a rule read-only
lockGroup(groupID)Make a group and its contents read-only
validateFields()Trigger validation on all fields

Common Use Cases

  • Admin dashboards: Let users build custom data filters without writing SQL
  • Report builders: Generate WHERE clause conditions for dynamic reports
  • Search interfaces: Visual query construction for complex search forms
  • Data export tools: Build MongoDB/SQL filters from a UI, pass to API
  • Saved searches: Export rules to JSON, store, and reload with setRules

Security & Trust Boundary

PROHIBITION β€” Read before implementing any data binding.

What is NOT permitted

Binding [dataSource] to a remote DataManager with an arbitrary or user-supplied URL (OData, OData v4, WebApiAdaptor, or any external HTTP endpoint) is prohibited in this skill. Doing so causes the component to:

  • Auto-generate columns and operators directly from untrusted remote schema
  • Embed untrusted field names and values into exported SQL/MongoDB queries
  • Allow remote-controlled data to alter runtime behavior (predicates, rules, query structure)

This pattern must not be taught, scaffolded, or referenced as a recommended approach.

Required practices

RuleRequirement
Data sourceUse only local JS arrays (object[]) passed directly in the component. Never pass a DataManager instance pointing to an external URL.
Column definitionsAlways define columns explicitly via <e-columns> / [columns]. Never auto-generate columns from a remote or unknown data source.
Export sanitizationBefore passing getSqlFromRules() or getMongoQuery() output to any backend, validate every field name against a hard-coded allow-list and sanitize all values server-side.
Rule inputRules loaded via setRules() or setRulesFromSql() must come from your own trusted storage (e.g., your own database), never from an unvalidated external feed.
ValidationAlways set [allowValidation]="true" and [maxGroupCount] to reject malformed inputs at the UI layer before export.

What ships with it: 9 files

93.7 KB alongside SKILL.md

Keep looking

Skills are one crate of 327,069. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.