Archive API docs
    Jump to

    Narrow by kind with a prefix — q: queries, m: mutations, t: types, g: guides, f: fields and arguments.

    Input object

    CustomAttributeConditionInput

    A single filter condition on a workspace-defined custom attribute. Multiple conditions are combined with AND.

    Fields

    Object, input and enum types open in place — use + to reveal their fields. A type that is already open above the row stops at a ↻ circular marker, and anything nested past the depth limit links out to its own page instead.

    field String! required
    Key of the custom attribute to filter on, as returned by customAttributeSchemas (e.g. "sentiment").
    operator FilterOperator! required
    Comparison operator. The valid set depends on the attribute type; see FilterOperator.
    type CustomAttributeType! required
    Type of the custom attribute, as returned by customAttributeSchemas. Determines the expected value shape and the valid operators.
    value JSON
    Comparison value; the shape depends on type: a string for text-like types, an option ID for single-selects, a number for NUMBER, an ISO 8601 string for dates, true/false for BOOLEAN, an array for multi-select and list types. BETWEEN takes { from, to }. Pass null for IS_EMPTY / IS_NOT_EMPTY.