All files / repositories/phase index.js

100% Statements 19/19
100% Branches 0/0
100% Functions 5/5
100% Lines 19/19

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 398x   8x 28x   28x 28x     8x 6x 6x     8x 1x 1x     8x 1x   1x 1x     8x 1x 1x     8x              
const db = require("../../database/connection");
 
const insert = (phase) => {
    const query = "INSERT INTO phase(title) VALUES ($1) " +
        "RETURNING *"; // returns passed phase with it's id set to corresponding id in database
    const params = [phase.title];
    return db.query(query, params);
};
 
const findById = (id) => {
    const query = "SELECT * FROM phase WHERE id=$1";
    return db.query(query, [id]);
};
 
const findAll = () => {
    const query = "SELECT * FROM phase";
    return db.query(query);
};
 
const update = (phase) => {
    const query = "UPDATE phase SET title = $2 WHERE id = $1" +
        "RETURNING *"; // returns passed phase with it's id set to corresponding id in database
    const params = [phase.id, phase.title];
    return db.query(query, params);
};
 
const removeById = (id) => {
    const query = "DELETE FROM phase WHERE id=$1 RETURNING *";
    return db.query(query, [id]);
};
 
module.exports = {
    insert,
    findById,
    findAll,
    update,
    removeById,
};