@zeepkist/graphql
    Preparing search index...

    Interface SampledUserFilter

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

    interface SampledUserFilter {
        id?: null | IntFilter;
        steamName?: null | StringFilter;
        banned?: null | BooleanFilter;
        dateCreated?: null | DatetimeFilter;
        dateUpdated?: null | DatetimeFilter;
        steamId?: null | BigFloatFilter;
        discordId?: null | BigFloatFilter;
        and?: null | SampledUserFilter[];
        or?: null | SampledUserFilter[];
        not?: null | SampledUserFilter;
    }
    Index

    Properties

    id?: null | IntFilter

    Filter by the object’s id field.

    steamName?: null | StringFilter

    Filter by the object’s steamName field.

    banned?: null | BooleanFilter

    Filter by the object’s banned field.

    dateCreated?: null | DatetimeFilter

    Filter by the object’s dateCreated field.

    dateUpdated?: null | DatetimeFilter

    Filter by the object’s dateUpdated field.

    steamId?: null | BigFloatFilter

    Filter by the object’s steamId field.

    discordId?: null | BigFloatFilter

    Filter by the object’s discordId field.

    and?: null | SampledUserFilter[]

    Checks for all expressions in this list.

    or?: null | SampledUserFilter[]

    Checks for any expressions in this list.

    not?: null | SampledUserFilter

    Negates the expression.