Skip to content

SavedFilter

A set of filter options saved for quick loading in the calendar

Fields

filter_data · JSON! · required · JSON-formatted options to use for setting filter
id · ID! · required · Unique ID for this filter
name · String! · required · Name of the filter
organization_id · String · The organization_id that has access to the filter
user_id · String! · required · The user that created the filter
uuid · String! · required · The unique UUID/string of the filter, used for sharing

Used By

Definition

"""
A set of filter options saved for quick loading in the calendar
"""
type SavedFilter {
"""
JSON-formatted options to use for setting filter
"""
filter_data: JSON!
"""
Unique ID for this filter
"""
id: ID!
"""
Name of the filter
"""
name: String!
"""
The organization_id that has access to the filter
"""
organization_id: String
"""
The user that created the filter
"""
user_id: String!
"""
The unique UUID/string of the filter, used for sharing
"""
uuid: String!
}