From 49a668885f6d205c315f95b7c56dc5034b1bbc70 Mon Sep 17 00:00:00 2001 From: Andre Turner Date: Mon, 26 Feb 2024 11:49:33 -0600 Subject: [PATCH] removed pagination input --- dbschema/pagination-input.esdl | 14 -------------- dbschema/product.esdl | 2 +- 2 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 dbschema/pagination-input.esdl diff --git a/dbschema/pagination-input.esdl b/dbschema/pagination-input.esdl deleted file mode 100644 index 28f53baf0b..0000000000 --- a/dbschema/pagination-input.esdl +++ /dev/null @@ -1,14 +0,0 @@ -module default { - type PaginationInput { - required count: int16 { - constraint min_value(1); - constraint max_value(100); - default := 25; - }; - - page: int16 { - constraint min_value(1); - default := 1; - }; - } -} \ No newline at end of file diff --git a/dbschema/product.esdl b/dbschema/product.esdl index a115813636..17699618cd 100644 --- a/dbschema/product.esdl +++ b/dbschema/product.esdl @@ -66,7 +66,7 @@ module default { } module Product { - type CompletionDescription extending default::PaginationInput { + type CompletionDescription { query: str; methodology: Methodology; }