Created
April 24, 2021 15:13
-
-
Save manvillej/7f54f89bd191f82b369334cef7241ddf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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