File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
src/pages/[platform]/build-a-backend/data/data-modeling/secondary-index Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 11import { getCustomStaticPath } from ' @/utils/getCustomStaticPath' ;
2+ // cspell:ignore ACCOUNTREPRESENTATIVEID
23export const meta = {
34 title: ' Customize secondary indexes' ,
45 description:
@@ -116,7 +117,6 @@ import 'models/ModelProvider.dart';
116117// highlight-start
117118final request = ModelQueries.list(
118119 Customer.classType,
119- // eslint-disable-next-line spellcheck/spell-checker
120120 where: Customer.ACCOUNTREPRESENTATIVEID.eq(YOUR_REP_ID),
121121);
122122// highlight-end
@@ -218,7 +218,6 @@ import 'models/ModelProvider.dart';
218218// highlight-start
219219final request = ModelQueries.list(
220220 Customer.classType,
221- // eslint-disable-next-line spellcheck/spell-checker
222221 where: Customer.ACCOUNTREPRESENTATIVEID.eq(YOUR_REP_ID) & Customer.NAME.beginsWith("Rene"),
223222);
224223// highlight-end
You can’t perform that action at this time.
0 commit comments