Ejemplo n.º 1
0
def invoke_graphsync_ecosystem_package(**kwargs):
    """Invoke Pending Graph Sync data for given ecosystem and package.

    :param ecosystem: ecosystem for which the data should be retrieved
    :param package: package for which the data should be retrieved
    """
    result = graph_sync.invoke_sync(params=kwargs)
    return result
Ejemplo n.º 2
0
def invoke_graphsync_epv(**kwargs):
    """Invoke Pending Graph Sync data for the given ecosystem, package, and version.

    :param ecosystem: ecosystem for which the data should be retrieved
    :param package: package for which the data should be retrieved
    :param version: package version for which the data should be retrieved
    """
    result = graph_sync.invoke_sync(params=kwargs)
    return result
Ejemplo n.º 3
0
def invoke_graphsync_ecosystem(**kwargs):
    """Invoke Pending Graph Sync data for given ecosystem."""
    result = graph_sync.invoke_sync(params=kwargs)
    return result
Ejemplo n.º 4
0
def invoke_graphsync_all(**kwargs):
    """Invoke Pending Graph Sync data for all Ecosystems."""
    result = graph_sync.invoke_sync(params=kwargs)
    return result