Skip to content

Instantly share code, notes, and snippets.

@dbaba
Last active October 7, 2015 06:57
Show Gist options
  • Save dbaba/3123410 to your computer and use it in GitHub Desktop.
Save dbaba/3123410 to your computer and use it in GitHub Desktop.
ModelMapper.findAllUids() from MOAT js API Document
var myArrayTypeMapper =
session.newModelMapperStub('MyArrayType');
myArrayTypeMapper.findAllUids({
success : function(result) {
for (var i = 0; i < result.array.length; i++) {
var uid = result.array[i];
// do something
...
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment