-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
48 lines (48 loc) · 1.32 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Package: queryBuilder
Type: Package
Title: Programmatic Way to Construct Complex Filtering Queries
Version: 0.1.0
Authors@R:
c(
person(
given = "Krystian", family = "Igras",
email = "[email protected]",
role = c("aut", "cre")
),
person(
given = "Damien", family = "Sorel",
email = "[email protected]",
role = "cph",
comment = "Syntax for defining queries using rules and groups as included in 'jQuery-QueryBuilder' JavaScript framework."
)
)
Maintainer: Krystian Igras <[email protected]>
Description: Syntax for defining complex filtering expressions in a programmatic way.
A filtering query, built as a nested list configuration, can be easily stored in other formats like 'YAML' or 'JSON'.
What's more, it's possible to convert such configuration to a valid expression that can be applied to
popular 'dplyr' package operations.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Imports:
utils,
magrittr,
rlang,
dplyr,
glue,
purrr
Collate:
'queryBuilder-package.R'
'utils.R'
'operators.R'
'conditions.R'
'config.R'
'rules_and_groups.R'
'parse_results.R'
RoxygenNote: 7.3.1
Suggests:
knitr,
rmarkdown,
testthat (>= 3.0.0)
Config/testthat/edition: 3
VignetteBuilder: knitr