1 2 3 4 5 6 7 8 9 10 11
# typing information for composite functions: those that invoke several # elementary requests, and return the result as a single dict import typing def system_status(): pass queries = {'system_status': system_status} mutations = {}