Created
January 8, 2019 00:44
-
-
Save whalesalad/b6fa65236e93265c9dbdf5b2109ec757 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"query": "<%= params[:query] %>", | |
"suggestions": [ | |
<% size = @customers.size %> | |
<% @customers.each_with_index do |customer, i| %> | |
{ | |
"value": "<%= customer.id %>", | |
"data": <%= raw customer._source.to_json %> | |
}<%= i + 1 == size ? "" : "," %> | |
<% end %> | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment