Skip to content

Commit

Permalink
fix filter formula (#151)
Browse files Browse the repository at this point in the history
* fix formula

* improve code
  • Loading branch information
yogasw authored Aug 7, 2023
1 parent 33625da commit 038f987
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ type RelationFilterCondition struct {
}

type FormulaFilterCondition struct {
// DEPRECATED use `String` instead
Text *TextFilterCondition `json:"text,omitempty"`
String *TextFilterCondition `json:"string,omitempty"`
Checkbox *CheckboxFilterCondition `json:"checkbox,omitempty"`
Number *NumberFilterCondition `json:"number,omitempty"`
Date *DateFilterCondition `json:"date,omitempty"`
Expand Down

0 comments on commit 038f987

Please sign in to comment.