@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;
        idUser?: null | IntFilter;
        dateCreated?: null | DatetimeFilter;
        dateUpdated?: null | DatetimeFilter;
        idLevel?: null | IntFilter;
        userByIdUser?: null | UserFilter;
        levelByIdLevel?: null | LevelFilter;
        and?: null | FavoriteFilter[];
        or?: null | FavoriteFilter[];
        not?: null | FavoriteFilter;
    }
    Index

    Properties

    id?: null | IntFilter

    Filter by the object’s id field.

    idUser?: null | IntFilter

    Filter by the object’s idUser field.

    dateCreated?: null | DatetimeFilter

    Filter by the object’s dateCreated field.

    dateUpdated?: null | DatetimeFilter

    Filter by the object’s dateUpdated field.

    idLevel?: null | IntFilter

    Filter by the object’s idLevel field.

    userByIdUser?: null | UserFilter

    Filter by the object’s userByIdUser relation.

    levelByIdLevel?: null | LevelFilter

    Filter by the object’s levelByIdLevel 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.