Skip to content

Commit

Permalink
add IndexName parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Alvaro Tuso committed Jul 24, 2017
1 parent bec54f6 commit 8fa2f07
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dinerl.erl
Expand Up @@ -295,6 +295,8 @@ convert_query_parameters([{limit, V}|Rest], Acc) ->
convert_query_parameters(Rest, [{<<"Limit">>, V} | Acc]);
convert_query_parameters([{count, V}|Rest], Acc) ->
convert_query_parameters(Rest, [{<<"Count">>, V} | Acc]);
convert_query_parameters([{index_name, IndexName} | Rest], Acc) ->
convert_query_parameters(Rest, [{<<"IndexName">>, IndexName} | Acc]);
convert_query_parameters([{scan_index_forward, V}|Rest], Acc) ->
convert_query_parameters(Rest, [{<<"ScanIndexForward">>, V} | Acc]);
convert_query_parameters([{consistent, V}|Rest], Acc) ->
Expand Down

0 comments on commit 8fa2f07

Please sign in to comment.