Home

existsfilterisunread

existsfilterisunread is a Boolean indicator used in various data‑querying and messaging APIs to denote whether a filter condition targeting unread items is present in a given request or data set. The flag typically appears in the metadata of list‑oriented operations, such as retrieving mail, notifications, or task collections, and it allows client applications to quickly assess if the result set has been limited to items that have not yet been marked as read.

In the context of email services, the flag is often generated by the server when a query

Developers encountering existsfilterisunread should treat it as read‑only metadata; attempts to set or modify the field

Related concepts include the IsRead property of individual items, filter expression syntax, and pagination mechanisms that

includes
a
clause
such
as
“IsRead
eq
false”
or
an
equivalent
filter
expression.
When
true,
the
response
may
contain
a
subset
of
messages
that
are
exclusively
unread;
when
false,
the
query
either
omitted
an
unread
filter
or
included
both
read
and
unread
items.
The
presence
of
the
flag
can
be
useful
for
client‑side
caching
strategies,
UI
adjustments
(for
example,
displaying
an
“Unread
only”
toggle),
and
analytics
that
track
how
frequently
users
request
unread‑only
views.
directly
are
typically
ignored
by
the
service.
Instead,
the
appropriate
method
to
influence
its
value
is
to
include
or
remove
an
explicit
unread
filter
in
the
query
syntax
supported
by
the
API
(e.g.,
OData,
GraphQL,
or
proprietary
query
languages).
may
preserve
the
flag
across
multiple
pages
of
results.
The
flag’s
behavior
is
consistent
across
most
implementations
that
expose
it,
but
exact
naming
and
case
sensitivity
may
vary
between
platforms.