add empty file access quarys

This commit is contained in:
2025-10-24 08:32:39 +02:00
parent 8c2259d1de
commit d04cd5f831
+14 -1
View File
@@ -54,7 +54,7 @@ class EdgeDB:
await asyncio.sleep(0.5) await asyncio.sleep(0.5)
retry_count += 1 retry_count += 1
# App Quary Functions # File Quary Functions
async def get_file(self, file_id:str): async def get_file(self, file_id:str):
data = await self.run_query_with_reconnection( data = await self.run_query_with_reconnection(
self.client.query_single, self.client.query_single,
@@ -200,3 +200,16 @@ class EdgeDB:
""", """,
ids=remove_file_ids ids=remove_file_ids
) )
async def get_file_informations(self, file_id:str):
pass
# File Access Quary Functions
async def add_file_access(self):
pass
async def get_all_file_access(self):
pass
async def get_file_access(self, file_id:str):
pass