SQLExpression🔗
Definition🔗
class SQLExpression implements \JsonSerializable
{
/**
* SELECT part of the SQL expression
*/
public ?\Grafana\Foundation\Cloudwatch\QueryEditorFunctionExpression $select;
/**
* FROM part of the SQL expression
* @var \Grafana\Foundation\Cloudwatch\QueryEditorPropertyExpression|\Grafana\Foundation\Cloudwatch\QueryEditorFunctionExpression|null
*/
public $from;
/**
* WHERE part of the SQL expression
*/
public ?\Grafana\Foundation\Cloudwatch\QueryEditorArrayExpression $where;
/**
* GROUP BY part of the SQL expression
*/
public ?\Grafana\Foundation\Cloudwatch\QueryEditorArrayExpression $groupBy;
/**
* ORDER BY part of the SQL expression
*/
public ?\Grafana\Foundation\Cloudwatch\QueryEditorFunctionExpression $orderBy;
/**
* The sort order of the SQL expression, `ASC` or `DESC`
*/
public ?string $orderByDirection;
/**
* LIMIT part of the SQL expression
*/
public ?int $limit;
}
Methods🔗
fromArray🔗
Builds this object from an array.
This function is meant to be used with the return value of json_decode($json, true)
.
jsonSerialize🔗
Returns the data representing this object, preparing it for JSON serialization with json_encode()
.