Skip to main content
Version: v6

QueryBuilder

Refer to the TypeScript reference page for information about the types and interfaces referenced below.

The default export of react-querybuilder is the <QueryBuilder /> React component (also available as a named export).

QueryBuilder calls the useQueryBuilder hook to prepare the query, schema, update methods, etc., that get passed down to the subcomponents.

Subcomponents

QueryBuilder renders a RuleGroup representing the root of the query.

That root RuleGroup is nested within a <div> that has the standard queryBuilder class, any classes added by controlClassnames.queryBuilder, and data- properties with "enabled"/"disabled" values indicating whether drag-and-drop or inline combinators (showCombinatorsBetweenRules or independentCombinators) are enabled.

Finally, everything is wrapped in <QueryBuilderContext.Provider> which inherits any values from ancestor context providers and propogates them down to subcomponents (props will supersede context values).

Props

All QueryBuilder props are optional, but as stated in the getting started guide, the query builder is really only useful when, at a minimum, the fields prop is defined.

note

When you see RuleGroupTypeAny below (e.g. for query, defaultQuery, and onQueryChange), that means the type must either be RuleGroupType or RuleGroupTypeIC. However, if the type is RuleGroupTypeIC, then the independentCombinators prop must be set to true. Likewise, if the type is RuleGroupType then independentCombinators must be false or undefined.

fields

OptionList<Field> | Record<string, Field>

The array of fields that should be used or an array of option groups containing arrays of fields. (Alternatively, fields can be an object where the keys correspond to each field name and the values are the field definitions. If fields is an object, then the options array passed to the fieldSelector component will be sorted alphabetically by the label property.)

tip

Field objects can also contain custom properties. Each field object will be passed in its entirety to the appropriate OperatorSelector and ValueEditor components as the fieldData prop (see the section on controlElements).

onQueryChange

(query: RuleGroupTypeAny) => void

This function is invoked whenever the query is updated from within the component. The query is provided as an object of type RuleGroupType by default. For example:

{
"combinator": "and",
"not": false,
"rules": [
{
"field": "firstName",
"operator": "=",
"value": "Steve"
},
{
"field": "lastName",
"operator": "=",
"value": "Vai"
},
{
"combinator": "and",
"rules": [
{
"field": "age",
"operator": ">",
"value": "30"
}
]
}
]
}

If the independentCombinators prop is provided, then the query argument will be of type RuleGroupTypeIC. The "IC" version of the example above would look like this:

{
"not": false,
"rules": [
{
"field": "firstName",
"operator": "=",
"value": "Steve"
},
"and",
{
"field": "lastName",
"operator": "=",
"value": "Vai"
},
"and",
{
"rules": [
{
"field": "age",
"operator": ">",
"value": "30"
}
]
}
]
}

query

RuleGroupTypeAny

The query is an object of type RuleGroupType (or RuleGroupTypeIC, if independentCombinators is true). If this prop is provided, <QueryBuilder /> will be a controlled component.

The query prop follows the same format as the parameter passed to the onQueryChange callback since they are meant to be used together to control the component. See examples.

defaultQuery

RuleGroupTypeAny

The initial query when <QueryBuilder /> is uncontrolled.

caution

Do not provide both query and defaultQuery props. To use <QueryBuilder /> as a controlled component, provide and manage the query prop in combination with the onQueryChange callback. Use defaultQuery (or neither query prop) to render an uncontrolled component.

If both props are defined, TypeScript will throw an error during compilation and an error will be logged to the console during runtime (in "development" mode only). Errors will also be logged to the console if the query prop is defined during one render and undefined in the next, or vice versa.

context

any

A "bucket" for passing arbitrary props down to custom components (default components will ignore this prop). The context prop is passed to each and every component, so it's accessible anywhere in the QueryBuilder component tree.

operators

OptionList<Operator>

The array of operators that should be used. Custom operators must define a name and label property. An arity property, which can be "unary", "binary", or a number, may also be defined for each operator. If arity is either "unary" or a number less than 2, the value editor component will not be rendered when that operator is selected.

To build the operator list dynamically depending on a rule's field property, use getOperators. The result of getOperators, if not null, will supersede the operators prop.

The default operator list is below.

[
{ name: '=', label: '=' },
{ name: '!=', label: '!=' },
{ name: '<', label: '<' },
{ name: '>', label: '>' },
{ name: '<=', label: '<=' },
{ name: '>=', label: '>=' },
{ name: 'contains', label: 'contains' },
{ name: 'beginsWith', label: 'begins with' },
{ name: 'endsWith', label: 'ends with' },
{ name: 'doesNotContain', label: 'does not contain' },
{ name: 'doesNotBeginWith', label: 'does not begin with' },
{ name: 'doesNotEndWith', label: 'does not end with' },
{ name: 'null', label: 'is null' },
{ name: 'notNull', label: 'is not null' },
{ name: 'in', label: 'in' },
{ name: 'notIn', label: 'not in' },
{ name: 'between', label: 'between' },
{ name: 'notBetween', label: 'not between' },
];

combinators

OptionList

The array of combinators that should be used for RuleGroups. The default combinator list is below.

[
{ name: 'and', label: 'AND' },
{ name: 'or', label: 'OR' },
];

controlClassnames

Partial<Classnames>

This prop can be used to assign custom CSS classes to the various controls rendered by the <QueryBuilder /> component. Each attribute is a Classname which can be a string, string[], or Record<string, any> (see documentation for clsx):

Usage example

In the example below, any "+Rule" buttons in the query builder will have the "bold" class which might have the associated CSS rule .bold { font-weight: bold; }.

function App() {
return (
<QueryBuilder controlClassnames={{ addRule: 'bold' }}>
)
}
PropertyClasses are applied to...
queryBuilder...the outermost <div> element
ruleGroup...each <div> wrapping a group
header...each <div> wrapping a group's header controls
body...each <div> wrapping a group's body elements (child rules/groups)
combinators...each <select> control for combinators
addRule...each <button> that adds a rule
addGroup...each <button> that adds a group
cloneRule...each <button> that clones a rule
cloneGroup...each <button> that clones a group
removeGroup...each <button> that removes a group
lockRule...each <button> that locks/disables a rule
lockGroup...each <button> that locks/disables a group
notToggle...each <label> on a "not" (aka "inversion") toggle
rule...each <div> containing a rule
fields...each <select> control for selecting a field
operators...each <select> control for selecting an operator
value...each <input> for entering a value
removeRule...each <button> that removes a rule
dragHandle...each <span> acting as a drag handle
valueSource...each <select> control for selecting a value source

controlElements

Partial<Controls>

This object allows you to override the default components.

Usage example

function App() {
return (
<QueryBuilder controlElements={{ valueEditor: CustomValueEditor }}>
)
}

The following control overrides are supported per the Controls interface:

PropertyType
addGroupActionReact.ComponentType<ActionWithRulesAndAddersProps>
addRuleActionReact.ComponentType<ActionWithRulesAndAddersProps>
cloneGroupActionReact.ComponentType<ActionWithRulesProps>
cloneRuleActionReact.ComponentType<ActionProps>
combinatorSelectorReact.ComponentType<CombinatorSelectorProps>
dragHandleReact.ForwardRefExoticComponent<DragHandleProps & React.RefAttributes<HTMLSpanElement>>
fieldSelectorReact.ComponentType<FieldSelectorProps>
inlineCombinatorReact.ComponentType<InlineCombinatorProps>
lockGroupActionReact.ComponentType<ActionWithRulesProps>
lockRuleActionReact.ComponentType<ActionProps>
notToggleReact.ComponentType<NotToggleProps>
operatorSelectorReact.ComponentType<OperatorSelectorProps>
removeGroupActionReact.ComponentType<ActionWithRulesProps>
removeRuleActionReact.ComponentType<ActionProps>
ruleReact.ComponentType<RuleProps>
ruleGroupReact.ComponentType<RuleGroupProps>
valueEditorReact.ComponentType<ValueEditorProps>
valueSourceSelectorReact.ComponentType<ValueSourceSelectorProps>

addGroupAction

Default is ActionElement. Receives the following props per the ActionWithRulesAndAddersProps interface:

PropTypeDescription
labelstringtranslations.addGroup.label, e.g. "+Group"
titlestringtranslations.addGroup.title, e.g. "Add group"
classNamestringCSS classNames to be applied
handleOnClick(e: React.MouseEvent, context?: any) => voidAdds a new sub-group to this group
rulesRuleOrGroupArrayThe rules array for this group
ruleOrGroupRuleGroupTypeAnyThis group
levelnumberThe level of this group
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this group
disabledbooleanWhether this group is disabled/locked
pathPathPath of this group
schemaSchemaQuery schema

addRuleAction

Default is ActionElement. Receives the following props per the ActionWithRulesAndAddersProps interface:

PropTypeDescription
labelstringtranslations.addRule.label, e.g. "+Rule"
titlestringtranslations.addRule.title, e.g. "Add rule"
classNamestringCSS classNames to be applied
handleOnClick(e: React.MouseEvent, context?: any) => voidAdds a new rule to this rule
rulesRuleOrGroupArrayThe rules array for this rule
ruleOrGroupRuleGroupTypeAnyThis rule
levelnumberThe level of this rule
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this rule
disabledbooleanWhether this rule is disabled/locked
pathPathPath of this rule
schemaSchemaQuery schema

cloneGroupAction

Default is ActionElement. Receives the following props per the ActionWithRulesProps interface:

PropTypeDescription
labelstringtranslations.cloneRuleGroup.label, e.g. "⧉"
titlestringtranslations.cloneRuleGroup.title, e.g. "Clone group"
classNamestringCSS classNames to be applied
handleOnClick(e: React.MouseEvent) => voidClones this group
rulesRuleOrGroupArrayThe rules array for this group
ruleOrGroupRuleGroupTypeAnyThis group
levelnumberThe level of this group
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this group
disabledbooleanWhether this group is disabled/locked
pathPathPath of this group
schemaSchemaQuery schema

cloneRuleAction

Default is ActionElement. Receives the following props per the ActionProps interface:

PropTypeDescription
labelstringtranslations.cloneRule.label, e.g. "⧉"
titlestringtranslations.cloneRule.title, e.g. "Clone rule"
classNamestringCSS classNames to be applied
handleOnClick(e: React.MouseEvent) => voidClones the rule
ruleOrGroupRuleTypeThis rule
levelnumberThe level of this rule
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this rule
disabledbooleanWhether this rule is disabled/locked
pathPathPath of this rule
schemaSchemaQuery schema

combinatorSelector

Default is ValueSelector. Receives the following props per the CombinatorSelectorProps interface:

PropTypeDescription
optionsOptionListSame as combinators prop passed into QueryBuilder
valuestringSelected combinator from the existing query representation, if any
classNamestringCSS classNames to be applied
handleOnChange(value: any) => voidUpdates the group's combinator
rulesRuleOrGroupArrayThe rules array for this group
titlestringtranslations.combinators.title, e.g. "Combinators"
levelnumberThe level of this group
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this group
disabledbooleanWhether this group is disabled/locked
pathPathPath of this group
schemaSchemaQuery schema

dragHandle

Default is DragHandle. Only rendered if drag-and-drop is enabled. Note that this component must be based on React.forwardRef. Receives the forwarded ref and the following props per the DragHandleProps interface:

PropTypeDescription
labelstringtranslations.dragHandle.label, e.g. "⁞⁞"
titlestringtranslations.dragHandle.title, e.g. "Drag handle"
classNamestringCSS classNames to be applied
levelnumberThe level of this rule/group
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this rule/group
disabledbooleanWhether this rule/group is disabled/locked
pathPathPath of this rule/group
schemaSchemaQuery schema
ruleOrGroupRuleGroupTypeAny | RuleTypeThis group or rule, depending on the parent component

fieldSelector

Default is ValueSelector. Receives the following props per the FieldSelectorProps interface:

PropTypeDescription
optionsOptionList<Field>Same as fields prop passed into QueryBuilder
valuestringSelected field from the existing query representation, if any
titlestringtranslations.fields.title, e.g. "Fields"
operatorstringSelected operator from the existing query representation, if any
classNamestringCSS classNames to be applied
handleOnChange(value: any) => voidUpdates the rule's field
levelnumberThe level of this rule
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this rule
disabledbooleanWhether this rule is disabled/locked
pathPathPath of this rule
schemaSchemaQuery schema
ruleRuleTypeThis rule

inlineCombinator

A small wrapper around the combinatorSelector component. Receives the following props per the InlineCombinatorProps interface (which extends CombinatorSelectorProps):

PropTypeDescription
componentSchema['controls']['combinatorSelector']Same as the combinatorSelector component
independentCombinatorsboolean | undefinedSame as independentCombinators prop passed in to QueryBuilder

lockGroupAction

Default is ActionElement. Receives the following props per the ActionWithRulesProps interface:

PropTypeDescription
labelstringtranslations.lockGroup.label or translations.lockGroupDisabled.label, e.g. "🔓" when unlocked and "🔒" when locked
titlestringtranslations.lockGroup.title or translations.lockGroupDisabled.title, e.g. "Lock group" or "Unlock group"
classNamestringCSS classNames to be applied
handleOnClick(e: React.MouseEvent) => voidLocks the group
rulesRuleOrGroupArrayThe rules present for this group
ruleOrGroupRuleGroupTypeAnyThis group
levelnumberThe level of this group
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this group
disabledbooleanWhether this group is disabled/locked
disabledTranslationstringtranslations.lockGroupDisabled if parent group is not disabled, otherwise undefined
pathPathPath of this group
schemaSchemaQuery schema

lockRuleAction

Default is ActionElement. Receives the following props per the ActionWithRulesProps interface:

PropTypeDescription
labelstringtranslations.lockRule.label or translations.lockRuleDisabled.label, e.g. "🔓" when unlocked and "🔒" when locked
titlestringtranslations.lockRule.title or translations.lockRuleDisabled.title, e.g. "Lock rule" or "Unlock rule"
classNamestringCSS classNames to be applied
handleOnClick(e: React.MouseEvent) => voidLocks the rule
ruleOrGroupRuleTypeThis rule
levelnumberThe level of this rule
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this rule
disabledbooleanWhether this rule is disabled/locked
disabledTranslationstringtranslations.lockRuleDisabled if parent group is not disabled, otherwise undefined
pathPathPath of this rule
schemaSchemaQuery schema

notToggle

Default is NotToggle. Receives the following props per the NotToggleProps interface:

PropTypeDescription
labelstringtranslations.notToggle.label, e.g. "Not"
titlestringtranslations.notToggle.title, e.g. "Invert this group"
classNamestringCSS classNames to be applied
handleOnChange(checked: boolean) => voidUpdates the group's not property
checkedbooleanWhether the input should be checked or not
levelnumberThe level of this group
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this group
disabledbooleanWhether this group is disabled/locked
pathPathPath of this group
schemaSchemaQuery schema
ruleGroupRuleGroupTypeAnyThis group

operatorSelector

Default is ValueSelector. Receives the following props per the OperatorSelectorProps interface:

PropTypeDescription
fieldstringField name corresponding to this rule
fieldDataFieldThe entire object from the fields array for this field
optionsOptionList<Operator>Return value of getOperators(field)
valuestringSelected operator from the existing query representation, if any
titlestringtranslations.operators.title, e.g. "Operators"
classNamestringCSS classNames to be applied
handleOnChange(value: any) => voidUpdates the rule's operator
levelnumberThe level of this rule
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this rule
disabledbooleanWhether this rule is disabled/locked
pathPathPath of this rule
schemaSchemaQuery schema
ruleRuleTypeThis rule

removeGroupAction

Default is ActionElement. Receives the following props per the ActionWithRulesProps interface:

PropTypeDescription
labelstringtranslations.removeGroup.label, e.g. "x"
titlestringtranslations.removeGroup.title, e.g. "Remove group"
classNamestringCSS classNames to be applied
handleOnClick(e: React.MouseEvent) => voidRemoves the group
rulesRuleOrGroupArrayThe rules array for this group
ruleOrGroupRuleGroupTypeAnyThis group
levelnumberThe level of this group
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this group
disabledbooleanWhether this group is disabled/locked
pathPathPath of this group
schemaSchemaQuery schema

removeRuleAction

Default is ActionElement. Receives the following props per the ActionProps interface:

PropTypeDescription
labelstringtranslations.removeRule.label, e.g. "x"
titlestringtranslations.removeRule.title, e.g. "Remove rule"
classNamestringCSS classNames to be applied
handleOnClick(e: React.MouseEvent) => voidRemoves the rule
ruleOrGroupRuleTypeThis rule
levelnumberThe level of this rule
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this rule
disabledbooleanWhether this rule is disabled/locked
pathPathPath of this rule
schemaSchemaQuery schema

rule

Default is Rule. Receives the following props per the RuleProps interface:

PropTypeDescription
idstringUnique identifier for this rule
pathPathPath of this rule
ruleRuleTypeThe rule object
translationsTranslationsThe default translations merged with the translations prop
schemaSchemaQuery schema
actionsQueryActionsQuery update functions
contextanyContainer for custom props that are passed to all components
disabledbooleanWhether the rule itself is disabled
parentDisabledbooleanWhether the parent group of this rule is disabled
tip

If you enable drag-and-drop and want to use a custom Rule component, use the controlElements prop on the QueryBuilderDnD context provider instead of QueryBuilder.

ruleGroup

Default is RuleGroup. Receives the following props per the RuleGroupProps interface:

PropTypeDescription
idstringUnique identifier for this group
pathPathPath of this group
ruleGroupRuleGroupTypeAnyThe group object
translationsTranslationsThe default translations merged with the translations prop
schemaSchemaQuery schema
actionsQueryActionsQuery update functions
contextanyContainer for custom props that are passed to all components
disabledbooleanWhether the group itself is disabled
parentDisabledbooleanWhether the parent group of this group is disabled
tip

If you enable drag-and-drop and want to use a custom RuleGroup component, use the controlElements prop on the QueryBuilderDnD context provider instead of QueryBuilder.

valueEditor

Default is ValueEditor. Receives the following props per the ValueEditorProps interface:

PropTypeDescription
fieldstringField name corresponding to this rule
fieldDataFieldThe entire object from the fields array for this field
operatorstringOperator name corresponding to this rule
valuestringvalue from the existing query representation, if any
titlestringtranslations.value.title, e.g. "Value"
handleOnChange(value: any) => voidUpdates the rule's value
typeValueEditorTypeType of editor to be displayed
inputTypestringIntended @type attribute of the <input>, if type prop is "text"
valuesany[]List of available values for this rule
classNamestringCSS classNames to be applied
valueSourceValueSourceValue source for this rule
listsAsArraysbooleanWhether to manage value lists (i.e. "between"/"in" operators) as arrays
parseNumbersbooleanWhether to parse real numbers from strings
separatorReactNodeSeparator element for series of editors (i.e. "between" operator)
levelnumberThe level of this rule
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this rule
disabledbooleanWhether this rule is disabled/locked
pathPathPath of this rule
schemaSchemaQuery schema
ruleRuleTypeThis rule

valueSourceSelector

Default is ValueSelector. Receives the following props per the ValueSourceSelectorProps interface:

PropTypeDescription
fieldstringField name corresponding to this rule
fieldDataFieldThe entire object from the fields array for the selected field
optionsOptionList<ValueSourceOption>Return value of getValueSources(field, operator)
valueValueSourceSelected value source for this rule, if any
titlestringtranslations.valueSourceSelector.title, e.g. "Value source"
classNamestringCSS classNames to be applied
handleOnChange(value: any) => voidUpdates the rule's valueSource
levelnumberThe level of this rule
contextanyContainer for custom props that are passed to all components
validationboolean | ValidationResultValidation result of this rule
disabledbooleanWhether this rule is disabled/locked
pathPathPath of this rule
schemaSchemaQuery schema
ruleRuleTypeThis rule

getOperators

(field: string) => OptionList<Operator> | null

This function is invoked to get the list of allowed operators for the given field. If null is returned, the operators prop is used (or the default operators if the operators prop is not defined).

getValueEditorType

(field: string, operator: string) => ValueEditorType

This function is invoked to get the type of ValueEditor for the given field and operator. Allowed values are "text" (the default if the function is not provided or if null is returned), "select", "multiselect", "checkbox", "radio", "textarea", and "switch".

getValueSources

(field: string, operator: string) => ValueSources;

This function is invoked to get the list of allowed value sources for a given field and operator. The return value must be an array with one or two elements: "value", "field", or both (in either order). If the prop is not defined, () => ["value"] is used. The first element in the array will be the initial selection.

getValueEditorSeparator

(field: string, operator: string) => ReactNode;

This function should return the separator element for a given field and operator. It will be placed in between value editors when multiple are rendered, e.g. when the operator is "between". The element can be any valid React element, including a plain string (e.g. "and" or "to") or an HTML element like <span />.

getInputType

(field: string, operator: string) => string

This function is invoked to get the type attribute which will be applied to the rendered <input /> for the given field and operator. This prop is only applicable when getValueEditorType returns "text" or a falsy value. If no function is provided, "text" is used.

getValues

(field: string, operator: string) => OptionList

This function is invoked to get the list of allowed values for the given field and operator. This prop is only applicable when getValueEditorType returns "select", "multiselect", or "radio". If no function is provided, an empty array is used.

getDefaultField

string | ((fieldsData: OptionList<Field>) => string)

The default field for new rules. This can be a field name or a function that returns a field name based on the fields prop.

getDefaultOperator

string | ((field: string) => string)

The default operator for new rules. This can be an operator name or a function that returns an operator name.

getDefaultValue

(rule: RuleType) => any

This function returns the default value for new rules based on the existing rule properties.

getRuleClassname

(rule: RuleType) => Classname

Generate custom classes which will be added to the outer div of a rule based on the rule properties.

getRuleGroupClassname

(ruleGroup: RuleGroupTypeAny) => Classname

Generate custom classes which will be added to the outer div of a group based on the group properties.

onAddRule

(rule: RuleType, parentPath: Path, query: RuleGroupTypeAny, context?: any) => RuleType | false

This callback is invoked immediately before a new rule is added. The function should either manipulate the rule and return it as an object of type RuleType or return false to cancel the addition of the rule. You can use findPath to locate the parent group to which the new rule will be added within the query hierarchy. The context parameter (fourth argument) can be passed from a custom addRuleAction component to its onHandleClick prop, which will in turn pass it to onAddRule. This allows one to change the rule that gets added (or avoid the action completely) based on arbitrary data.

If independentCombinators is enabled, you can specify the combinator inserted immediately before the new rule (if the parent group is not empty) by adding a combinatorPreceding property (with a combinator name as the value) to the rule before returning it. Otherwise the combinator preceding the last rule, or the first combinator in the default list if the parent group has only one rule, will be used.

tip

To completely prevent the addition of new rules, pass controlElements={{ addRuleAction: () => null }} which will prevent the "+Rule" button from rendering.

onAddGroup

<RG extends RuleGroupTypeAny>(ruleGroup: RG, parentPath: Path, query: RG, context?: any) => RG | false

This callback is invoked before a new group is added. The function should either manipulate the group and return it as an object of the same type (either RuleGroupType or RuleGroupTypeIC), or return false to cancel the addition of the group. You can use findPath to locate the parent group to which the new group will be added within the query hierarchy. The context parameter (fourth argument) can be passed from a custom addGroupAction component to its onHandleClick prop, which will in turn pass it to onAddGroup. This allows one to change the group that gets added (or avoid the action completely) based on arbitrary data.

If independentCombinators is enabled, you can specify the combinator inserted immediately before the new group (if the parent group is not empty) by adding a combinatorPreceding property (with a combinator name as the value) to the group before returning it. Otherwise the combinator preceding the last rule, or the first combinator in the default list if the parent group has only one rule, will be used.

tip

To completely prevent the addition of new groups, pass controlElements={{ addGroupAction: () => null }} which will prevent the "+Group" button from rendering.

onRemove

<RG extends RuleGroupTypeAny>(ruleOrGroup: RG | RuleType, path: Path, query: RG, context?: any) => boolean

This callback is invoked before a rule or group is removed. The function should return true if the removal should proceed as normal, or false if the removal should be aborted.

translations

Partial<Translations>

This prop provides basic internationalization (i18n) support. It can be used to override translatable texts applied to the various controls created by the <QueryBuilder /> component for a specific locale.

All keys in the object and all properties within each key are optional. The translations prop object will be deep-merged with the default object below.

{
"fields": {
"title": "Fields",
"placeholderName": "~",
"placeholderLabel": "------",
"placeholderGroupLabel": "------"
},
"operators": {
"title": "Operators",
"placeholderName": "~",
"placeholderLabel": "------",
"placeholderGroupLabel": "------"
},
"value": {
"title": "Value"
},
"removeRule": {
"label": "x",
"title": "Remove rule"
},
"removeGroup": {
"label": "x",
"title": "Remove group"
},
"addRule": {
"label": "+Rule",
"title": "Add rule"
},
"addGroup": {
"label": "+Group",
"title": "Add group"
},
"combinators": {
"title": "Combinators"
},
"notToggle": {
"label": "Not",
"title": "Invert this group"
},
"cloneRule": {
"label": "⧉",
"title": "Clone rule"
},
"cloneRuleGroup": {
"label": "⧉",
"title": "Clone group"
},
"dragHandle": {
"label": "⁞⁞",
"title": "Drag handle"
},
"lockRule": {
"label": "🔓",
"title": "Lock rule"
},
"lockGroup": {
"label": "🔓",
"title": "Lock group"
},
"lockRuleDisabled": {
"label": "🔒",
"title": "Unlock rule"
},
"lockGroupDisabled": {
"label": "🔒",
"title": "Unlock group"
}
}

showCombinatorsBetweenRules

boolean (default false) Click here for demo

Pass true to render the combinator selector between each child rule/group in the group body instead of in the group header. This can make some queries easier to understand as it encourages a more natural style of reading.

Note that when this option is enabled, the combinator property is still managed at the group level even though selectors are displayed among the rules. Selecting a new combinator with one of the inline selectors will update all combinator selectors within the same group since they all use the same value. To display inline combinator selectors that are managed independently, use the independentCombinators prop.

showNotToggle

boolean (default false) Click here for demo

Pass true to display the "Not" (aka inversion) toggle switch for each rule group.

showCloneButtons

boolean (default false) Click here for demo

Pass true to display a "clone" button on each group header and rule. Clicking a "clone" button will create an exact duplicate (with new id/ids) of the rule or group, positioned immediately after the original, within the same rules array.

showLockButtons

boolean (default false) Click here for demo

Pass true to display the "Lock rule" and "Lock group" buttons. When a rule is locked, all elements within the rule will be disabled except for the lock button itself (so the user can unlock the rule). When a group is locked, all elements within the group header (except the lock button itself), as well as all child rule/group elements (including their lock buttons), will be disabled.

resetOnFieldChange

boolean (default true) Click here for demo with this feature disabled

Pass false to avoid resetting the operator and value when the field is updated.

resetOnOperatorChange

boolean (default false) Click here for demo

Pass true to reset the value when the operator is updated.

enableMountQueryChange

boolean (default true)

Pass false to disable the onQueryChange call on initial mount of the component. This is enabled by default because the query/defaultQuery prop is processed during the first render and may be slightly different than the object passed in (ids would have been generated if they were missing, for example).

autoSelectField

boolean (default true) Click here for demo with this feature disabled

Pass false to automatically add an "empty" option (value "~" and label "------"; see translations.fields.placeholder* to customize) to the fields array as the first element. The "empty" option will be the initial field selection for all new rules. When the empty field option is selected, the operator selector and value components will not be rendered for that rule.

autoSelectOperator

boolean (default true) Click here for demo with this feature disabled

Pass false to automatically add an "empty" option (value "~" and label "------"; see translations.operators.placeholder* to customize) to the operators array as the first element. The "empty" option will be the initial operator selection for all new rules. When the empty operator option is selected, the value components will not be rendered for that rule.

addRuleToNewGroups

boolean (default false) Click here for demo

Pass true to automatically add a rule to new groups. If neither a query nor defaultQuery prop is not passed in, a rule will be added to the root group when the component is mounted. If a query/defaultQuery prop is passed in with an empty rules array, no rule will be added automatically.

listsAsArrays

boolean (default false) Click here for demo

Pass true to update rule values that represent lists with proper arrays instead of comma-separated strings. This prop applies when valueEditorType is "multiselect" and when a rule's operator is "between", "notBetween", "in", or "notIn".

For example, the default behavior for the "between" operator might produce this rule:

{
"field": "f1",
"operator": "between",
"value": "f2,f3",
"valueSource": "field"
}

When listsAsArrays is true, the rule's value will be an array:

{
"field": "f1",
"operator": "between",
"value": ["f2", "f3"],
"valueSource": "field"
}

parseNumbers

boolean | "strict" | "native" (default false) Click here for demo

Pass true, "strict", or "native" to store value as a number instead of a string (when possible). Passing "native" will use parseFloat to determine if a value is numeric, while true or "strict" will use a more strict algorithm that requires the value to be numeric in its entirety (not just start with a number as parseFloat requires). See more information in the note about the corresponding formatQuery option.

independentCombinators

boolean (default false) Click here for demo

Pass true to insert an independent combinator selector between each child rule/group within the body of a group. A combinator selector will not be rendered in group headers.

Visually, this option has a similar effect as the showCombinatorsBetweenRules option, except that each combinator selector is independently controlled. You may find that users take to this configuration more easily, as it can allow them to express queries more like they would in natural language.

caution

When the independentCombinators option is enabled, the query (or defaultQuery) prop must be of type RuleGroupTypeIC instead of the default RuleGroupType. See onQueryChange above, or the Rules and groups section of the TypeScript documentation for more information.

enableDragAndDrop

boolean (default false) Click here for demo

caution

This prop does not need to be set directly on the <QueryBuilder /> component. It has no effect unless the following conditions are met:

  1. A QueryBuilderDnD context provider from the companion package @react-querybuilder/dnd is rendered higher up in the component tree.
  2. react-dnd and react-dnd-html5-backend are installed/imported.

If those conditions are met, and enableDragAndDrop is not explicitly set to false on the <QueryBuilder /> component, then enableDragAndDrop is implicitly true.

When true (under the conditions detailed above), a drag handle is displayed on the left-hand side of each group header and each rule. Clicking and dragging the handle element allows users to visually reorder the rules and groups.

npm i react-querybuilder @react-querybuilder/dnd react-dnd react-dnd-html5-backend
# OR yarn add / pnpm add / bun add
import { QueryBuilderDnD } from '@react-querybuilder/dnd';
import * as ReactDnD from 'react-dnd';
import * as ReactDndHtml5Backend from 'react-dnd-html5-backend';
import { QueryBuilder } from 'react-querybuilder';

const App = () => (
<QueryBuilderDnD dnd={{ ...ReactDnD, ...ReactDndHtml5Backend }}>
<QueryBuilder />
</QueryBuilderDnD>
);
tip

If your application already uses react-dnd, use QueryBuilderDndWithoutProvider instead of QueryBuilderDnD. They are functionally equivalent, but the former assumes a <DndProvider /> already exists higher up in the component tree. The latter renders its own DndProvider which will conflict with any pre-existing ones. (If you use the wrong component, you will probably see the error message "Cannot have two HTML5 backends at the same time" in the console.)

disabled

Deprecated

Use the disabled property on rules and groups within the query object instead.

boolean | Path[] (default false) Click here for demo

Pass true to disable all subcomponents and prevent changes to the query. Pass an array of paths to disable specific rules and/or groups. For example, disabled={[[0]]} will disable the top-most rule/group and its subcomponents, but nothing else.

debugMode

boolean (default false) Click here for demo

Pass true to enabled logging debug information with the onLog function.

onLog

(message: any) => void (default console.log)

Receives logging messages when debugMode is true.

idGenerator

() => string (default generateID)

Used to generate ids for rules and groups without them (or clones that need a new id). By default, QueryBuilder generates valid v4 UUIDs per RFC 4122, using the crypto package if available or a Math.random()-based method otherwise.

validator

QueryValidator Click here for demo

This function is executed each time QueryBuilder renders. The return value should be a boolean (true for valid queries, false for invalid) or an object whose keys are the ids of each validated rule and group in the query tree. If an object is returned, the values associated to each key should be a boolean (true for valid rules/groups, false for invalid) or an object with a valid boolean property and an optional reasons array. The full object will be passed to each rule and group component, and all sub-components of each rule/group will receive the value associated with the id of its rule or group. See the validation documentation for more information.