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 11import { getCustomStaticPath } from ' @/utils/getCustomStaticPath' ;
2-
32export const meta = {
43 title: ' Customize secondary indexes' ,
54 description:
@@ -117,6 +116,7 @@ import 'models/ModelProvider.dart';
117116// highlight-start
118117final request = ModelQueries.list(
119118 Customer.classType,
119+ // eslint-disable-next-line spellcheck/spell-checker
120120 where: Customer.ACCOUNTREPRESENTATIVEID.eq(YOUR_REP_ID),
121121);
122122// highlight-end
@@ -218,6 +218,7 @@ import 'models/ModelProvider.dart';
218218// highlight-start
219219final request = ModelQueries.list(
220220 Customer.classType,
221+ // eslint-disable-next-line spellcheck/spell-checker
221222 where: Customer.ACCOUNTREPRESENTATIVEID.eq(YOUR_REP_ID) & Customer.NAME.beginsWith("Rene"),
222223);
223224// highlight-end
You can’t perform that action at this time.
0 commit comments