File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/pages/[platform]/build-a-backend/data/data-modeling/secondary-index Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 1
1
import { getCustomStaticPath } from ' @/utils/getCustomStaticPath' ;
2
-
3
2
export const meta = {
4
3
title: ' Customize secondary indexes' ,
5
4
description:
@@ -117,6 +116,7 @@ import 'models/ModelProvider.dart';
117
116
// highlight-start
118
117
final request = ModelQueries.list(
119
118
Customer.classType,
119
+ // eslint-disable-next-line spellcheck/spell-checker
120
120
where: Customer.ACCOUNTREPRESENTATIVEID.eq(YOUR_REP_ID),
121
121
);
122
122
// highlight-end
@@ -218,6 +218,7 @@ import 'models/ModelProvider.dart';
218
218
// highlight-start
219
219
final request = ModelQueries.list(
220
220
Customer.classType,
221
+ // eslint-disable-next-line spellcheck/spell-checker
221
222
where: Customer.ACCOUNTREPRESENTATIVEID.eq(YOUR_REP_ID) & Customer.NAME.beginsWith("Rene"),
222
223
);
223
224
// highlight-end
You can’t perform that action at this time.
0 commit comments