linear.usercollectionfilter
Home > @runlightyear/linear > UserCollectionFilter
UserCollectionFilter interface
Signature:interface UserCollectionFilter
Optional Properties
Property | Modifiers | Type | Description |
---|---|---|---|
active? | BooleanComparator | Comparator for the user's activity status. | |
admin? | BooleanComparator | Comparator for the user's admin status. | |
and? | Array<UserCollectionFilter> | Compound filters, all of which need to be matched by the user. | |
assignedIssues? | IssueCollectionFilter | Filters that the users assigned issues must satisfy. | |
createdAt? | DateComparator | Comparator for the created at date. | |
displayName? | StringComparator | Comparator for the user's display name. | |
email? | StringComparator | Comparator for the user's email. | |
every? | UserFilter | Filters that needs to be matched by all users. | |
id? | IDComparator | Comparator for the identifier. | |
isMe? | BooleanComparator | Filter based on the currently authenticated user. Set to true to filter for the authenticated user, false for any other user. | |
length? | NumberComparator | Comparator for the collection length. | |
name? | StringComparator | Comparator for the user's name. | |
or? | Array<UserCollectionFilter> | Compound filters, one of which need to be matched by the user. | |
some? | UserFilter | Filters that needs to be matched by some users. | |
updatedAt? | DateComparator | Comparator for the updated at date. |