@zeepkist/graphql
    Preparing search index...

    Interface VoteCondition

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

    interface VoteCondition {
        id?: null | number;
        userId?: null | number;
        levelId?: null | number;
        value?: null | number;
        dateCreated?: any;
        dateUpdated?: any;
    }
    Index

    Properties

    id?: null | number

    Checks for equality with the object’s id field.

    userId?: null | number

    Checks for equality with the object’s userId field.

    levelId?: null | number

    Checks for equality with the object’s levelId field.

    value?: null | number

    Checks for equality with the object’s value field.

    dateCreated?: any

    Checks for equality with the object’s dateCreated field.

    dateUpdated?: any

    Checks for equality with the object’s dateUpdated field.