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,17 @@
import { GraphQLJSONObject } from 'graphql-type-json';
import { Field, Int, InputType } from '@nestjs/graphql';
@InputType()
export class ListArguments {
@Field(() => GraphQLJSONObject, { nullable: true })
filters?: any;
@Field(() => GraphQLJSONObject, { nullable: true })
sort?: any;
@Field(() => Int, { defaultValue: 0 })
skip: number;
@Field(() => Int, { defaultValue: 10 })
limit: number;
}