"""GraphQL utilities""" def format_approve_product(product_id): """Format ApproveProductInput type for mutation. Args: product_id: (int) The associated product ID Returns: dict: a dict of appropriately formatted key, value pairs """ return { "productId": int(product_id), }