Skip to content

Instantly share code, notes, and snippets.

@manvillej
Created April 24, 2021 15:13
Show Gist options
  • Save manvillej/7f54f89bd191f82b369334cef7241ddf to your computer and use it in GitHub Desktop.
Save manvillej/7f54f89bd191f82b369334cef7241ddf to your computer and use it in GitHub Desktop.
(function process(/*ResolverEnvironment*/ env) {
var suite = new GlideRecord("sys_atf_test_suite");
var sys_id = env.getArguments().id;
if(suite.get(sys_id)){
return ATFGraphQLAPI.atfTestToJson(suite);
}
return;
})(env);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment