@zeepkist/graphql
    Preparing search index...

    Interface FavoriteFilter

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

    interface FavoriteFilter {
        id?: null | IntFilter;
        userId?: null | IntFilter;
        dateCreated?: null | DatetimeFilter;
        dateUpdated?: null | DatetimeFilter;
        levelId?: null | IntFilter;
        user?: null | UserFilter;
        level?: null | LevelFilter;
        and?: null | FavoriteFilter[];
        or?: null | FavoriteFilter[];
        not?: null | FavoriteFilter;
    }
    Index

    Properties

    id?: null | IntFilter

    Filter by the object’s id field.

    userId?: null | IntFilter

    Filter by the object’s userId field.

    dateCreated?: null | DatetimeFilter

    Filter by the object’s dateCreated field.

    dateUpdated?: null | DatetimeFilter

    Filter by the object’s dateUpdated field.

    levelId?: null | IntFilter

    Filter by the object’s levelId field.

    user?: null | UserFilter

    Filter by the object’s user relation.

    level?: null | LevelFilter

    Filter by the object’s level relation.

    and?: null | FavoriteFilter[]

    Checks for all expressions in this list.

    or?: null | FavoriteFilter[]

    Checks for any expressions in this list.

    not?: null | FavoriteFilter

    Negates the expression.