Skip to content

Commit 672dda1

Browse files
committed
fix: lu et li
1 parent 025ea8a commit 672dda1

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

src/Options/Definitions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,13 +399,13 @@ module.exports.ParseServerOptions = {
399399
maxGraphQLQueryComplexity: {
400400
env: 'PARSE_SERVER_MAX_GRAPH_QLQUERY_COMPLEXITY',
401401
help:
402-
'Maximum query complexity for GraphQL queries. Controls depth and number of field selections.<br><br>Format: `{ depth: number, fields: number }`<br>- `depth`: Maximum depth of nested field selections<br>- `fields`: Maximum number of field selections in a single request<br><br>If both `maxIncludeQueryComplexity` and `maxGraphQLQueryComplexity` are provided, `maxIncludeQueryComplexity` values must be lower than `maxGraphQLQueryComplexity` values to avoid validation conflicts.',
402+
'Maximum query complexity for GraphQL queries. Controls depth and number of field selections.<br><br>Format: `{ depth: number, fields: number }`<ul><li>`depth`: Maximum depth of nested field selections</li><li>`fields`: Maximum number of field selections in a single request</li></ul>If both `maxIncludeQueryComplexity` and `maxGraphQLQueryComplexity` are provided, `maxIncludeQueryComplexity` values must be lower than `maxGraphQLQueryComplexity` values to avoid validation conflicts.',
403403
action: parsers.objectParser,
404404
},
405405
maxIncludeQueryComplexity: {
406406
env: 'PARSE_SERVER_MAX_INCLUDE_QUERY_COMPLEXITY',
407407
help:
408-
'Maximum query complexity for REST API includes. Controls depth and number of include fields.<br><br>Format: `{ depth: number, count: number }`<br>- `depth`: Maximum depth of nested includes (e.g., foo.bar.baz = depth 3)<br>- `count`: Maximum number of include fields (e.g., foo,bar,baz = 3 fields)<br><br>If both `maxIncludeQueryComplexity` and `maxGraphQLQueryComplexity` are provided, `maxIncludeQueryComplexity` values must be lower than `maxGraphQLQueryComplexity` values to avoid validation conflicts.',
408+
'Maximum query complexity for REST API includes. Controls depth and number of include fields.<br><br>Format: `{ depth: number, count: number }`<ul><li>`depth`: Maximum depth of nested includes (e.g., foo.bar.baz = depth 3)</li><li>`count`: Maximum number of include fields (e.g., foo,bar,baz = 3 fields)</li></ul>If both `maxIncludeQueryComplexity` and `maxGraphQLQueryComplexity` are provided, `maxIncludeQueryComplexity` values must be lower than `maxGraphQLQueryComplexity` values to avoid validation conflicts.',
409409
action: parsers.objectParser,
410410
},
411411
maxLimit: {

src/Options/docs.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Options/index.js

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -358,21 +358,19 @@ export interface ParseServerOptions {
358358
/* Maximum query complexity for REST API includes. Controls depth and number of include fields.
359359
<br><br>
360360
Format: `{ depth: number, count: number }`
361-
<br>
362-
- `depth`: Maximum depth of nested includes (e.g., foo.bar.baz = depth 3)
363-
<br>
364-
- `count`: Maximum number of include fields (e.g., foo,bar,baz = 3 fields)
365-
<br><br>
361+
<ul>
362+
<li>`depth`: Maximum depth of nested includes (e.g., foo.bar.baz = depth 3)</li>
363+
<li>`count`: Maximum number of include fields (e.g., foo,bar,baz = 3 fields)</li>
364+
</ul>
366365
If both `maxIncludeQueryComplexity` and `maxGraphQLQueryComplexity` are provided, `maxIncludeQueryComplexity` values must be lower than `maxGraphQLQueryComplexity` values to avoid validation conflicts. */
367366
maxIncludeQueryComplexity: ?IncludeComplexityOptions;
368367
/* Maximum query complexity for GraphQL queries. Controls depth and number of field selections.
369368
<br><br>
370369
Format: `{ depth: number, fields: number }`
371-
<br>
372-
- `depth`: Maximum depth of nested field selections
373-
<br>
374-
- `fields`: Maximum number of field selections in a single request
375-
<br><br>
370+
<ul>
371+
<li>`depth`: Maximum depth of nested field selections</li>
372+
<li>`fields`: Maximum number of field selections in a single request</li>
373+
</ul>
376374
If both `maxIncludeQueryComplexity` and `maxGraphQLQueryComplexity` are provided, `maxIncludeQueryComplexity` values must be lower than `maxGraphQLQueryComplexity` values to avoid validation conflicts. */
377375
maxGraphQLQueryComplexity: ?GraphQLQueryComplexityOptions;
378376
}

0 commit comments

Comments
 (0)