@zeepkist/graphql
    Preparing search index...

    Interface UserCondition

    A condition to be used against User object types. All fields are tested for equality and combined with a logical ‘and.’

    interface UserCondition {
        id?: null | number;
        steamName?: null | string;
        banned?: null | boolean;
        dateCreated?: any;
        dateUpdated?: any;
        steamId?: any;
        discordId?: any;
    }
    Index

    Properties

    id?: null | number

    Checks for equality with the object’s id field.

    steamName?: null | string

    Checks for equality with the object’s steamName field.

    banned?: null | boolean

    Checks for equality with the object’s banned field.

    dateCreated?: any

    Checks for equality with the object’s dateCreated field.

    dateUpdated?: any

    Checks for equality with the object’s dateUpdated field.

    steamId?: any

    Checks for equality with the object’s steamId field.

    discordId?: any

    Checks for equality with the object’s discordId field.