@zeepkist/graphql
    Preparing search index...

    Interface LevelMetadatumFilter

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

    interface LevelMetadatumFilter {
        id?: IntFilter | null;
        levelId?: IntFilter | null;
        amountCheckpoints?: IntFilter | null;
        amountFinishes?: IntFilter | null;
        amountBlocks?: IntFilter | null;
        typeGround?: IntFilter | null;
        typeSkybox?: IntFilter | null;
        blocks?: JSONFilter | null;
        dateCreated?: DatetimeFilter | null;
        dateUpdated?: DatetimeFilter | null;
        level?: LevelFilter | null;
        and?: LevelMetadatumFilter[] | null;
        or?: LevelMetadatumFilter[] | null;
        not?: LevelMetadatumFilter | null;
    }
    Index

    Properties

    id?: IntFilter | null

    Filter by the object’s id field.

    levelId?: IntFilter | null

    Filter by the object’s levelId field.

    amountCheckpoints?: IntFilter | null

    Filter by the object’s amountCheckpoints field.

    amountFinishes?: IntFilter | null

    Filter by the object’s amountFinishes field.

    amountBlocks?: IntFilter | null

    Filter by the object’s amountBlocks field.

    typeGround?: IntFilter | null

    Filter by the object’s typeGround field.

    typeSkybox?: IntFilter | null

    Filter by the object’s typeSkybox field.

    blocks?: JSONFilter | null

    Filter by the object’s blocks field.

    dateCreated?: DatetimeFilter | null

    Filter by the object’s dateCreated field.

    dateUpdated?: DatetimeFilter | null

    Filter by the object’s dateUpdated field.

    level?: LevelFilter | null

    Filter by the object’s level relation.

    and?: LevelMetadatumFilter[] | null

    Checks for all expressions in this list.

    or?: LevelMetadatumFilter[] | null

    Checks for any expressions in this list.

    Negates the expression.