UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

10 lines (9 loc) 320 B
import { DatabaseHelper } from '../types.js'; export class NumberDatabaseHelper extends DatabaseHelper { addSearchCondition(dbQuery, collection, name, value, logical) { return dbQuery[logical].where({ [`${collection}.${name}`]: value }); } isNumberValid(_value, _info) { return true; } }