Method: Contentstack::Query#find_one
- Defined in:
- lib/contentstack/query.rb
permalink #find_one ⇒ Contentstack::Entry
Execute a Query and get the single matching object
Example
@query = @stack.content_type('product').query
@query.(["tag1", "tag2"])
.find_one
630 631 632 633 |
# File 'lib/contentstack/query.rb', line 630 def find_one limit 1 fetch.first end |