Skip to content

Instantly share code, notes, and snippets.

@manvillej
Last active April 17, 2021 16:57
Show Gist options
  • Save manvillej/a7e77e21ed08b9bd07d229ebb2c50013 to your computer and use it in GitHub Desktop.
Save manvillej/a7e77e21ed08b9bd07d229ebb2c50013 to your computer and use it in GitHub Desktop.
V1 -
// Script include: ATFGraphQLAPI
var ATFGraphQLAPI = {
"""
takes a glide record object and returns the data structure for an atfTest Schema object.
"""
atfTestToJson: function(test) {
return {
"active": test.getDisplayValue("active"),
"sys_id": test.getValue("sys_id"),
"name": test.getValue("name"),
"description": test.getValue("description")
};
},
type: 'ATFGraphQLAPI'
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment