"""Graphql Queries.""" import os current_directory = os.path.dirname(os.path.realpath(__file__)) with open(os.path.join(current_directory, 'product_id_by_filename.graphql')) as f: ASSET_FINAL_QUERY = f.read() with open(os.path.join(current_directory, 'product_data.graphql')) as f: PRODUCT_DATA_QUERY = f.read()