@zeepkist/graphql
    Preparing search index...

    Interface LevelPointFilter

    A filter to be used against LevelPoint object types. All fields are combined with a logical ‘and.’

    interface LevelPointFilter {
        id?: IntFilter | null;
        points?: IntFilter | null;
        levelId?: IntFilter | null;
        dateCreated?: DatetimeFilter | null;
        dateUpdated?: DatetimeFilter | null;
        rating?: FloatFilter | null;
        modifierLength?: FloatFilter | null;
        modifierCompetitiveness?: FloatFilter | null;
        modifierRating?: FloatFilter | null;
        modifierPopularity?: FloatFilter | null;
        cutPenalty?: FloatFilter | null;
        level?: LevelFilter | null;
        and?: LevelPointFilter[] | null;
        or?: LevelPointFilter[] | null;
        not?: LevelPointFilter | null;
    }
    Index

    Properties

    id?: IntFilter | null

    Filter by the object’s id field.

    points?: IntFilter | null

    Filter by the object’s points field.

    levelId?: IntFilter | null

    Filter by the object’s levelId field.

    dateCreated?: DatetimeFilter | null

    Filter by the object’s dateCreated field.

    dateUpdated?: DatetimeFilter | null

    Filter by the object’s dateUpdated field.

    rating?: FloatFilter | null

    Filter by the object’s rating field.

    modifierLength?: FloatFilter | null

    Filter by the object’s modifierLength field.

    modifierCompetitiveness?: FloatFilter | null

    Filter by the object’s modifierCompetitiveness field.

    modifierRating?: FloatFilter | null

    Filter by the object’s modifierRating field.

    modifierPopularity?: FloatFilter | null

    Filter by the object’s modifierPopularity field.

    cutPenalty?: FloatFilter | null

    Filter by the object’s cutPenalty field.

    level?: LevelFilter | null

    Filter by the object’s level relation.

    and?: LevelPointFilter[] | null

    Checks for all expressions in this list.

    or?: LevelPointFilter[] | null

    Checks for any expressions in this list.

    not?: LevelPointFilter | null

    Negates the expression.