From 9023abf1ede998e202455fb5e7840b3e006ce7fb Mon Sep 17 00:00:00 2001 From: Viki Val Date: Fri, 26 Apr 2024 13:25:27 +0200 Subject: [PATCH] :label: asc nulls last as sort order --- graphql/openreader/src/ir/args.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphql/openreader/src/ir/args.ts b/graphql/openreader/src/ir/args.ts index 3bfa44a7e..ec72a75c8 100644 --- a/graphql/openreader/src/ir/args.ts +++ b/graphql/openreader/src/ir/args.ts @@ -82,4 +82,4 @@ export interface OrderBy { } -export type SortOrder = 'ASC' | 'DESC' | 'ASC NULLS FIRST' | 'DESC NULLS LAST' +export type SortOrder = 'ASC' | 'DESC' | 'ASC NULLS FIRST' | 'ASC NULLS LAST' | 'DESC NULLS FIRST' | 'DESC NULLS LAST'