toJson method

Map toJson()

Implementation

Map toJson() => {
      'pageSize': pageSize,
      'offset': offset,
      'props': properties,
      'excludeProps': excludeProperties,
      'where': whereClause,
      'groupBy': groupBy,
      'having': havingClause,
      'sortBy': sortBy,
      'loadRelations': loadRelations?.join(','),
      'relationsDepth': relationsDepth,
      'relationsPageSize': relationsPageSize,
      'distinct': distinct,
    };