CosmosDbEx.Response.get_continuation_token

You're seeing just the function get_continuation_token, go back to CosmosDbEx.Response module for more information.
Link to this function

get_continuation_token(arg1)

View Source

Returns the continuation token of the request. This token can be sent with the next request to retrieve the next page of results from the query.

Example

iex> container = Container.new("TestItemsDb", "ItemsContainer")
iex> {:ok, response} = CosmosDbEx.get_documents(container)
iex> {:ok, response} = CosmosDbEx.get_documents(container, CosmosDbEx.Response.get_continuation_token(response))

NOTE: Cosmos Db returns results in pages of up to a maximum of 1000 items.

Returns nil if no continuation token is found. Nil also signals that there are no more items left from the query.