Method: Contentstack::Query#find_one

Defined in:
lib/contentstack/query.rb

#find_oneContentstack::Entry

Execute a Query and get the single matching object

Example

@query = @stack.content_type('product').query
@query.tags(["tag1", "tag2"])
      .find_one

Returns:

[View source]

630
631
632
633
# File 'lib/contentstack/query.rb', line 630

def find_one
  limit 1
  fetch.first
end