(self, id, read_data=True, raise_missing=True)
| 983 | """actual remoting is done via self.call in the @api decorator""" |
| 984 | |
| 985 | def get(self, id, read_data=True, raise_missing=True): |
| 986 | for resp in self.get_many([id], read_data=read_data, raise_missing=raise_missing): |
| 987 | return resp |
| 988 | |
| 989 | def get_many(self, ids, read_data=True, is_preloaded=False, raise_missing=True): |
| 990 | yield from self.call_many( |