# 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 = {}