summaryrefslogtreecommitdiff
path: root/src/services/api/graphql/utils/composite_function.py
blob: bc9d80fbb32535709b93e70b3c53a77269380de5 (plain)
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 = {}