You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/quarto.ex
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ defmodule Quarto do
31
31
* `:cursor` - Module to use for encoding/decoding the cursor
32
32
* `:cursor_fields` - Module to use for building the cursor from a record
33
33
* `:include_total_count` - Set this to true to return the total number of records matching the query. Note that this number will be capped by :total_count_limit. Defaults to false.
34
+
* `:include_entries` - Set this to false to skip fetching the records. Useful if you only need the total counts. Defaults to true.
34
35
* `:total_count_primary_key_field` - Running count queries on specified column of the table
35
36
* `:limit` - Limits the number of records returned per page. Note that this number will be capped by :maximum_limit. Defaults to `50`.
36
37
* `:maximum_limit` - Sets a maximum cap for :limit. This option can be useful when :limit is set dynamically (e.g from a URL param set by a user) but you still want to enfore a maximum. Defaults to 500.
0 commit comments