added graphql entegration and tested tanstack query

This commit is contained in:
2025-11-15 16:37:51 +03:00
parent a67170daa8
commit cf4f632afe
526 changed files with 55717 additions and 154 deletions

View File

@@ -0,0 +1,8 @@
interface ListArguments {
filters?: Record<string, any>;
sort?: Record<string, any>;
skip: number;
limit: number;
}
export type { ListArguments };