query property

QueryModel get query

Implementation

QueryModel get query {
  return QueryModel(
      resourceName: this.apiResourceName as String,
      tableName: this.tableName as String,
      singularResourceName: this.singularResourceName,
      fields: this.fields as List<String>,
      filters: this.filters,
      relations: this.relations,
      columns: this.repository.columns);
}