We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_operators
1 parent 3b7ac62 commit d5d5fdbCopy full SHA for d5d5fdb
src/resolvers/helpers/filter.js
@@ -184,6 +184,7 @@ export function addFieldsWithOperator(
184
new GraphQLInputObjectType({
185
name: typeName,
186
fields: {},
187
+ description: 'For performance reason this type contains only *indexed* fields.',
188
})
189
)
190
);
@@ -255,7 +256,7 @@ export function addFieldsWithOperator(
255
256
if (Object.keys(operatorsComposer.getFields()).length > 0) {
257
inputComposer.setField(OPERATORS_FIELDNAME, {
258
type: operatorsComposer.getType(),
- description: 'List of fields that can be filtered via operators',
259
+ description: 'List of *indexed* fields that can be filtered via operators.',
260
});
261
}
262
0 commit comments