Skip to content
This repository was archived by the owner on May 11, 2021. It is now read-only.

Commit ee590c8

Browse files
authored
Update Resolver - Get incidents by filter.script.js
1 parent 858701b commit ee590c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
(function process(/*ResolverEnvironment*/ env) {
2-
var GraphQLUtils = new x_116934_graphql.GraphQLExampleUtilities();
2+
var GraphQLUtils = new global.GraphQLExampleUtilities();
33
var filter = (env.getArguments().filter != null) ? env.getArguments().filter : {};
44
var paginate = (env.getArguments().paginate != null) ? env.getArguments().paginate : false;
55
var sort = (env.getArguments().sort != null) ? env.getArguments().sort : false;
66
var query = GraphQLUtils.generateQuery('incident', filter);
77
return GraphQLUtils.getRecordList('incident', query, paginate, sort);
8-
})(env);
8+
})(env);

0 commit comments

Comments
 (0)