You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Deprecator/Deprecations.js
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -41,4 +41,34 @@ module.exports = [
41
41
changeNewKey: '',
42
42
solution: "Use Parse Dashboard as GraphQL IDE or configure a third-party GraphQL client such as Apollo Sandbox, GraphiQL, or Insomnia with custom request headers.",
43
43
},
44
+
{
45
+
optionKey: 'requestComplexity.includeDepth',
46
+
changeNewDefault: '10',
47
+
solution: "Set 'requestComplexity.includeDepth' to a positive integer appropriate for your app to limit include pointer chain depth, or to '-1' to disable.",
48
+
},
49
+
{
50
+
optionKey: 'requestComplexity.includeCount',
51
+
changeNewDefault: '100',
52
+
solution: "Set 'requestComplexity.includeCount' to a positive integer appropriate for your app to limit the number of include paths per query, or to '-1' to disable.",
53
+
},
54
+
{
55
+
optionKey: 'requestComplexity.subqueryDepth',
56
+
changeNewDefault: '10',
57
+
solution: "Set 'requestComplexity.subqueryDepth' to a positive integer appropriate for your app to limit subquery nesting depth, or to '-1' to disable.",
58
+
},
59
+
{
60
+
optionKey: 'requestComplexity.queryDepth',
61
+
changeNewDefault: '10',
62
+
solution: "Set 'requestComplexity.queryDepth' to a positive integer appropriate for your app to limit query condition nesting depth, or to '-1' to disable.",
63
+
},
64
+
{
65
+
optionKey: 'requestComplexity.graphQLDepth',
66
+
changeNewDefault: '20',
67
+
solution: "Set 'requestComplexity.graphQLDepth' to a positive integer appropriate for your app to limit GraphQL field selection depth, or to '-1' to disable.",
68
+
},
69
+
{
70
+
optionKey: 'requestComplexity.graphQLFields',
71
+
changeNewDefault: '200',
72
+
solution: "Set 'requestComplexity.graphQLFields' to a positive integer appropriate for your app to limit the number of GraphQL field selections, or to '-1' to disable.",
0 commit comments