MCPcopy Index your code
hub / github.com/coderwhy/coderhub / getLabels

Method getLabels

src/service/label.service.js:16–20  ·  view source on GitHub ↗
(limit, offset)

Source from the content-addressed store, hash-verified

14 }
15
16 async getLabels(limit, offset) {
17 const statement = `SELECT * FROM label LIMIT ?, ?;`;
18 const [result] = await connection.execute(statement, [offset, limit]);
19 return result;
20 }
21}
22
23module.exports = new LabelService();

Callers 1

listMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected