@memberjunction/server 2.63.1 → 2.65.0

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.
@@ -124,7 +124,8 @@ export class ResolverBase {
124
124
  viewInput.AuditLogDescription,
125
125
  viewInput.ResultType,
126
126
  userPayload,
127
- pubSub
127
+ pubSub,
128
+ viewInput.MaxRows
128
129
  );
129
130
  } catch (err) {
130
131
  console.log(err);
@@ -151,7 +152,8 @@ export class ResolverBase {
151
152
  viewInput.AuditLogDescription,
152
153
  viewInput.ResultType,
153
154
  userPayload,
154
- pubSub
155
+ pubSub,
156
+ viewInput.MaxRows
155
157
  );
156
158
  } catch (err) {
157
159
  console.log(err);
@@ -188,7 +190,8 @@ export class ResolverBase {
188
190
  viewInput.AuditLogDescription,
189
191
  viewInput.ResultType,
190
192
  userPayload,
191
- pubSub
193
+ pubSub,
194
+ viewInput.MaxRows
192
195
  );
193
196
  } catch (err) {
194
197
  console.log(err);
@@ -347,7 +350,8 @@ export class ResolverBase {
347
350
  auditLogDescription: string | undefined,
348
351
  resultType: string | undefined,
349
352
  userPayload: UserPayload | null,
350
- pubSub: PubSubEngine
353
+ pubSub: PubSubEngine,
354
+ maxRows: number | undefined
351
355
  ) {
352
356
  try {
353
357
  if (!viewInfo || !userPayload) return null;
@@ -396,6 +400,7 @@ export class ResolverBase {
396
400
  SaveViewResults: saveViewResults,
397
401
  ExcludeDataFromAllPriorViewRuns: excludeDataFromAllPriorViewRuns,
398
402
  IgnoreMaxRows: ignoreMaxRows,
403
+ MaxRows: maxRows,
399
404
  ForceAuditLog: forceAuditLog,
400
405
  AuditLogDescription: auditLogDescription,
401
406
  ResultType: rt,