Skip to content

Filter🔗

Query filter representation.

Definition🔗

class Filter:
    """
    Query filter representation.
    """

    # Filter key.
    key: str
    # Filter operator.
    operator: str
    # Filter value.
    value: str
    # Filter condition.
    condition: typing.Optional[str]

Methods🔗

to_json🔗

Converts this object into a representation that can easily be encoded to JSON.

def to_json() -> dict[str, object]

from_json🔗

Builds this object from a JSON-decoded dict.

@classmethod
def from_json(data: dict[str, typing.Any]) -> typing.Self

See also🔗