2454 update filter definition to work with new backend (#2482)

* wip

* filters are working

* updated functions

* remove comment

* improve readability
This commit is contained in:
bosiraphael
2023-11-13 18:05:49 +01:00
committed by GitHub
parent 3de2fc72dc
commit 230459b23c
9 changed files with 133 additions and 50 deletions

View File

@ -2558,6 +2558,16 @@ export enum QueryMode {
Insensitive = 'insensitive'
}
export type RelationConnection = {
__typename?: 'RelationConnection';
/** Array of edges. */
edges: Array<RelationEdge>;
/** Paging information */
pageInfo: PageInfo;
/** Fetch total count of records */
totalCount: Scalars['Int'];
};
export enum SortOrder {
Asc = 'asc',
Desc = 'desc'