Overview

Namespaces

  • Contentstack
    • Error
    • Result
    • Stack
      • Assets
      • ContentType
        • BaseQuery
        • Entry
        • Query
    • Utility
  • None

Classes

  • Contentstack\Contentstack
  • Contentstack\Result\Result
  • Contentstack\Stack\Assets\Assets
  • Contentstack\Stack\ContentType\BaseQuery\BaseQuery
  • Contentstack\Stack\ContentType\ContentType
  • Contentstack\Stack\ContentType\Entry\Entry
  • Contentstack\Stack\ContentType\Query\Query
  • Contentstack\Stack\Stack

Exceptions

  • Contentstack\Error\CSException

Functions

  • Contentstack\Utility\contentstackRequest
  • Contentstack\Utility\contentstackUrl
  • Contentstack\Utility\debug
  • Contentstack\Utility\generateQuery
  • Contentstack\Utility\generateQueryParams
  • Contentstack\Utility\getDomain
  • Contentstack\Utility\getLastActivites
  • Contentstack\Utility\headers
  • Contentstack\Utility\isEmpty
  • Contentstack\Utility\isKeySet
  • Contentstack\Utility\validateInput
  • Contentstack\Utility\wrapResult
  • contentstackAddBoolean
  • contentstackAddParam
  • contentstackComparision
  • contentstackContains
  • contentstackCreateError
  • contentstackExistence
  • contentstackGetFunctionName
  • contentstackLanguage
  • contentstackLogical
  • contentstackPagination
  • contentstackProjection
  • contentstackReferences
  • contentstackRegexp
  • contentstackSearch
  • contentstackSorting
  • contentstackTags
  • Overview
  • Namespace
  • Class
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 
<?php
/*
 * Dependency loading
 * */

namespace Contentstack\Stack\ContentType\Query;

use Contentstack\Stack\ContentType\BaseQuery\BaseQuery;
use Contentstack\Utility;

require_once __DIR__."/base_query.php";
require_once __DIR__."/../utility.php";

class Query extends BaseQuery {
    var $operation;
    var $_query;

    /*
     * Query
     * Query Class to initalize your Query
     * @param
     * */
    public function __construct($data = '', $type = '') {

        $this->_query = array();
        $this->type = $type;
        parent::__construct($data, $this);
    
    }

    /*
     * find
     * Get all entries based on the specified subquery
     * */
    public function find() {
        $this->operation = __FUNCTION__;
        if($this->type == 'assets'){
            return \Contentstack\Utility\contentstackRequest($this, 'assets');
        }else if($this->type == 'contentType'){
            return \Contentstack\Utility\contentstackRequest($this);
    }        
    }

    /*
     * findOne
     * Get single entry based on the specified subquery
     * @deprecated since verion 1.1.0
     * */
    public function findOne() {
        $this->operation = __FUNCTION__;
        $this->_query['limit'] = 1;
        if($this->type == 'assets'){
            return \Contentstack\Utility\contentstackRequest($this, 'assets');
        }else if($this->type == 'contentType'){
            return \Contentstack\Utility\contentstackRequest($this);
    }
        
    }
}
API documentation generated by ApiGen