linear.commentcollectionfilter
Home > @runlightyear/linear > CommentCollectionFilter
CommentCollectionFilter interface
Signature:interface CommentCollectionFilter
Optional Properties
Property | Modifiers | Type | Description |
---|---|---|---|
and? | Array<CommentCollectionFilter> | Compound filters, all of which need to be matched by the comment. | |
body? | StringComparator | Comparator for the comments body. | |
createdAt? | DateComparator | Comparator for the created at date. | |
every? | CommentFilter | Filters that needs to be matched by all comments. | |
id? | IDComparator | Comparator for the identifier. | |
issue? | IssueFilter | Filters that the comments issue must satisfy. | |
length? | NumberComparator | Comparator for the collection length. | |
or? | Array<CommentCollectionFilter> | Compound filters, one of which need to be matched by the comment. | |
some? | CommentFilter | Filters that needs to be matched by some comments. | |
updatedAt? | DateComparator | Comparator for the updated at date. | |
user? | UserFilter | Filters that the comments creator must satisfy. |