inputData = {
let exampleData = [
{from: "Sheep", to: "full-fat", value: 2},
{from: "Goat", to: "full-fat", value: 2},
{from: "Cow", to: "full-fat", value: 2},
{from: "Cow", to: "skimmed", value: 4},
{from: "full-fat", to: "not boiled", value: 6},
{from: "skimmed", to: "not boiled", value: 2},
{from: "skimmed", to: "boiled", value: 2},
{from: "boiled", to: "cultures", value: 2},
{from: "not boiled", to: "cultures", value: 8},
{from: "cultures", to: "kefir grains", value: 2},
{from: "kefir grains", to: "fermentation 12h-24h", value: 2},
{from: "cultures", to: "fermentation 24h-30h", value: 2},
{from: "cultures", to: "fermentation 12h-24h", value: 2},
{from: "fermentation 12h-24h", to: "Not Strained", value: 2},
{from: "fermentation 12h-24h", to: "Strained", value: 2},
{from: "fermentation 24h-30h", to: "Strained", value: 2},
{from: "fermentation 24h-30h", to: "Not Strained", value: 2},
{from: "Not Strained", to: "Kefir", value: 2},
{from: "Not Strained", to: "Generic Yogurt", value: 2},
{from: "Strained", to: "Skyr", value: 2},
{from: "Strained", to: "Lebneh", value: 2},
{from: "Strained", to: "Greek Yogurt", value: 2},
]
return exampleData;
}