"""Queries.""" # TODO Remove unnecessary marketingProgramInfo fields get_product_marketing_blurb = """ query($productId: Int!, $programId: MarketingProgram!) { getProductMarketingProgramInfoByProgram( productId: $productId, programId: $programId ) { productId, marketingProgramInfos { marketingProgramInfoId, subject, client, description, marketingProgram, entityId, entityType } } } """ create_product_marketing_blurb = """ mutation($data: MarketingProgramInfoInput!) { createMarketingProgramInfo(input: $data) } """ update_product_marketing_blurb = """ mutation($marketingProgramInfoId: Int!, $data: MarketingProgramInfoDataInput!){ updateMarketingProgramInfo( marketingProgramInfoId: $marketingProgramInfoId, input: $data ) } """