Closed ksnmartin closed 2 years ago
A remove function in the Base class to delete objects matching a certain query would be nice. for example
from fastapi import FastAPI from deta import Deta deta = Deta("SECRET_KEY") db = deta.Base('db') app = FastAPI() @app.get("/") async def func(): db.remove({})#removes all entries
hello, thank you for the suggestion, noted.
A remove function in the Base class to delete objects matching a certain query would be nice. for example