@infrab4a/connect 4.0.0-beta.34 → 4.0.0-beta.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3173,7 +3173,9 @@ const withFindHasuraGraphQL = (MixinBase) => {
3173
3173
  this.bindOrderByAttributes = (orderBy, fields) => Object.keys(orderBy).reduce((acc, current) => ({
3174
3174
  ...acc,
3175
3175
  [AttributeOptionHelper.FindByAttribute(current, fields)
3176
- .columnName]: orderBy[current],
3176
+ .columnName]: orderBy[current] === 'asc'
3177
+ ? 'asc_nulls_last'
3178
+ : 'desc_nulls_last',
3177
3179
  }), {});
3178
3180
  this.bindAggretageAttributes = (aggregates, fields) => [
3179
3181
  ...(aggregates?.minimal?.length