[Go to site: main page, start]

query 2.2.0 copy "query: ^2.2.0" to clipboard
query: ^2.2.0 copied to clipboard

Search query parser to implement customized search. Supports boolean groups, field scopes, ranges, comparisons...

example/example.dart

import 'package:query/query.dart';

void main() {
  final q = parseQuery('some text OR field:another');
  // prints "(some (text OR field:another))"
  print(q);
}