def retrieve_graphsync_ecosystem_package(**kwargs):
    """Retrieve 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.fetch_pending(params=kwargs)
    return result
def retrieve_graphsync_epv(**kwargs):
    """Retrieve 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.fetch_pending(params=kwargs)
    return result
def retrieve_graphsync_ecosystem(**kwargs):
    """Retrieve Pending Graph Sync data for given ecosystem."""
    result = graph_sync.fetch_pending(params=kwargs)
    return result
def retrieve_graphsync_all(**kwargs):
    """Retrieve Pending Graph Sync data for all Ecosystems."""
    result = graph_sync.fetch_pending(params=kwargs)
    return result