Constant GET_SOLUTION_MUTATIONS

Source
pub const GET_SOLUTION_MUTATIONS: &str = "SELECT\n    mutation.key,\n    mutation.value\nFROM\n    solution_set\n    JOIN solution ON solution.solution_set_id = solution_set.id\n    JOIN mutation ON mutation.solution_id = solution.id\nWHERE\n    solution_set.content_addr = :content_addr AND solution.solution_index = :solution_index;\nORDER BY\n    mutation.mutation_index ASC\n";
Expand description
SELECT
    mutation.key,
    mutation.value
FROM
    solution_set
    JOIN solution ON solution.solution_set_id = solution_set.id
    JOIN mutation ON mutation.solution_id = solution.id
WHERE
    solution_set.content_addr = :content_addr AND solution.solution_index = :solution_index;
ORDER BY
    mutation.mutation_index ASC