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
This commit is contained in:
stg-annon
2021-04-25 23:37:31 -04:00
committed by GitHub
parent aedadc3857
commit eefc628cf0

View File

@@ -6,7 +6,7 @@ enum SortDirectionEnum {
input FindFilterType { input FindFilterType {
q: String q: String
page: Int 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 per_page: Int
sort: String sort: String
direction: SortDirectionEnum direction: SortDirectionEnum