From eefc628cf06d16025a89f8b01de821e768134f2f Mon Sep 17 00:00:00 2001 From: stg-annon <14135675+stg-annon@users.noreply.github.com> Date: Sun, 25 Apr 2021 23:37:31 -0400 Subject: [PATCH] update docs to match current functionality (#1339) was wondering why `per_page:0` was not working it seems to have been updated to `per_page:-1` to return all results --- graphql/schema/types/filters.graphql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphql/schema/types/filters.graphql b/graphql/schema/types/filters.graphql index b0d124bbe..f62a61c52 100644 --- a/graphql/schema/types/filters.graphql +++ b/graphql/schema/types/filters.graphql @@ -6,7 +6,7 @@ enum SortDirectionEnum { input FindFilterType { q: String page: Int - """use per_page = 0 to indicate all results. Defaults to 25.""" + """use per_page = -1 to indicate all results. Defaults to 25.""" per_page: Int sort: String direction: SortDirectionEnum